Merge pull request #109616 from fabaff/bump-aresponses

python3Packages.aresponses: 2.1.0 -> 2.1.2

authored by

Sandro and committed by
GitHub
83659f9f dea94c23

+7 -3
+7 -3
pkgs/development/python-modules/aresponses/default.nix
··· 5 5 , isPy3k 6 6 , pytest 7 7 , pytest-asyncio 8 + , pytest-cov 8 9 , pytestCheckHook 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "aresponses"; 13 - version = "2.1.0"; 14 + version = "2.1.2"; 14 15 15 16 disabled = !isPy3k; 16 17 ··· 18 19 owner = "CircleUp"; 19 20 repo = pname; 20 21 rev = version; 21 - sha256 = "0dc1y4s6kpmr0ar63kkyghvisgbmb8qq5wglmjclrpzd5180mjcl"; 22 + sha256 = "007wrk4wdy97a81imgzxd6sm5dly9v7abmxh9fyfi0vp1p7s75bw"; 22 23 }; 23 24 24 25 propagatedBuildInputs = [ ··· 32 33 33 34 checkInputs = [ 34 35 aiohttp 36 + pytest-asyncio 37 + pytest-cov 35 38 pytestCheckHook 36 - pytest-asyncio 37 39 ]; 38 40 39 41 # Disable tests which requires network access ··· 41 43 "test_foo" 42 44 "test_passthrough" 43 45 ]; 46 + 47 + __darwinAllowLocalNetworking = true; 44 48 45 49 pythonImportsCheck = [ "aresponses" ]; 46 50