about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-18 21:28:58 +0100
committerGitHub <noreply@github.com>2021-01-18 21:28:58 +0100
commit83659f9f85d5092180affe36d9353170bf2dee38 (patch)
treed548abb9c3209629d9006b12ec40504b107cce8e
parentdea94c23963711157f0209a7fa566a0cf02c711a (diff)
parent0bc72a58b29c4ee766edc6eebda3b4f8600e7cc5 (diff)
downloadnixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar.gz
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar.bz2
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar.lz
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar.xz
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.tar.zst
nixlib-83659f9f85d5092180affe36d9353170bf2dee38.zip
Merge pull request #109616 from fabaff/bump-aresponses
python3Packages.aresponses: 2.1.0 -> 2.1.2
-rw-r--r--pkgs/development/python-modules/aresponses/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aresponses/default.nix b/pkgs/development/python-modules/aresponses/default.nix
index 2407adefd5ce..53353a137886 100644
--- a/pkgs/development/python-modules/aresponses/default.nix
+++ b/pkgs/development/python-modules/aresponses/default.nix
@@ -5,12 +5,13 @@
 , isPy3k
 , pytest
 , pytest-asyncio
+, pytest-cov
 , pytestCheckHook
 }:
 
 buildPythonPackage rec {
   pname = "aresponses";
-  version = "2.1.0";
+  version = "2.1.2";
 
   disabled = !isPy3k;
 
@@ -18,7 +19,7 @@ buildPythonPackage rec {
     owner = "CircleUp";
     repo = pname;
     rev = version;
-    sha256 = "0dc1y4s6kpmr0ar63kkyghvisgbmb8qq5wglmjclrpzd5180mjcl";
+    sha256 = "007wrk4wdy97a81imgzxd6sm5dly9v7abmxh9fyfi0vp1p7s75bw";
   };
 
   propagatedBuildInputs = [
@@ -32,8 +33,9 @@ buildPythonPackage rec {
 
   checkInputs = [
     aiohttp
-    pytestCheckHook
     pytest-asyncio
+    pytest-cov
+    pytestCheckHook
   ];
 
   # Disable tests which requires network access
@@ -42,6 +44,8 @@ buildPythonPackage rec {
     "test_passthrough"
   ];
 
+  __darwinAllowLocalNetworking = true;
+
   pythonImportsCheck = [ "aresponses" ];
 
   meta = with lib; {