summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-10 10:29:11 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-10 10:53:01 +0100
commit43795b2cea7af32ce12ed0f388a24dafa6de0f68 (patch)
tree3e17381217e3f519c5f754db1cb444bd7a04aa79 /pkgs/development
parent9c105bdf8f2082f15d90a32ec1a6c38f243bbe82 (diff)
downloadnixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar.gz
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar.bz2
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar.lz
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar.xz
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.tar.zst
nixlib-43795b2cea7af32ce12ed0f388a24dafa6de0f68.zip
python3Packages.aiohttp: clean up dependencies
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/aiohttp/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index bea839f49e3d..f831679294a4 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -9,7 +9,6 @@
 , idna-ssl
 , pytest
 , gunicorn
-, pytest-raisesregexp
 , pytest-mock
 }:
 
@@ -24,7 +23,7 @@ buildPythonPackage rec {
 
   disabled = pythonOlder "3.4";
 
-  checkInputs = [ pytest gunicorn pytest-raisesregexp pytest-mock ];
+  checkInputs = [ pytest gunicorn pytest-mock ];
 
   propagatedBuildInputs = [ async-timeout chardet multidict yarl ]
     ++ lib.optional (pythonOlder "3.7") idna-ssl;