12 buildPythonPackage rec {
13 pname = "aiohttp-retry";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "aiohttp_retry";
23 hash = "sha256-9riIGQDxC+Ee16itSWJWobPkmuy7Mkn2eyTkevIGse8=";
26 build-system = [ setuptools ];
28 dependencies = [ aiohttp ];
30 __darwinAllowLocalNetworking = true;
37 pythonImportsCheck = [ "aiohttp_retry" ];
39 pytestFlagsArray = [ "--asyncio-mode=auto" ];
42 description = "Retry client for aiohttp";
43 homepage = "https://github.com/inyutin/aiohttp_retry";
44 changelog = "https://github.com/inyutin/aiohttp_retry/releases/tag/v${version}";
45 license = licenses.mit;
46 maintainers = with maintainers; [ fab ];