python3.pkgs.async-timeout: rename folder to match attribute name

This commit is contained in:
Theodore Ni
2023-08-08 21:22:01 -07:00
parent 71d2dd203d
commit 750b5a3211
2 changed files with 2 additions and 2 deletions
@@ -0,0 +1,31 @@
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "async-timeout";
version = "4.0.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-IWPhZA3bUreoyA0KZ6CFh+XSRcycVTp0qEcFa8KXaxU=";
};
propagatedBuildInputs = [
typing-extensions
];
# Circular dependency on aiohttp
doCheck = false;
meta = {
description = "Timeout context manager for asyncio programs";
homepage = "https://github.com/aio-libs/async_timeout/";
license = lib.licenses.asl20;
};
}