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