biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / async-timeout / default.nix
blobbc7c535947c07b9c00a2c514148832b777f33368
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   pythonOlder,
6   typing-extensions,
7 }:
9 buildPythonPackage rec {
10   pname = "async-timeout";
11   version = "4.0.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-RkDZa+hNgtAu1Z6itxBaD3szq+hwNwPNCrC/h8QnUi8=";
19   };
21   propagatedBuildInputs = [ typing-extensions ];
23   # Circular dependency on aiohttp
24   doCheck = false;
26   meta = {
27     description = "Timeout context manager for asyncio programs";
28     homepage = "https://github.com/aio-libs/async_timeout/";
29     license = lib.licenses.asl20;
30   };