about summary refs log tree commit diff
path: root/pkgs/development/python-modules/webtest
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-12-03 11:30:07 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:42 +0100
commit1122f9a855c9adab528fdebbff0b7d56ca0abbaa (patch)
treed0356e552885f0f63d334869af7185829ecbcae3 /pkgs/development/python-modules/webtest
parent0f241338c3a5918884f3a2ef338fca80489faf10 (diff)
python.pkgs.webtest: fix build
Diffstat (limited to 'pkgs/development/python-modules/webtest')
-rw-r--r--pkgs/development/python-modules/webtest/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/webtest/default.nix b/pkgs/development/python-modules/webtest/default.nix
index a1a91d35568f9..759b2a7555464 100644
--- a/pkgs/development/python-modules/webtest/default.nix
+++ b/pkgs/development/python-modules/webtest/default.nix
@@ -10,7 +10,6 @@
 , pyquery
 , wsgiproxy2
 , PasteDeploy
-, coverage
 }:
 
 buildPythonPackage rec {
@@ -18,7 +17,8 @@ buildPythonPackage rec {
   pname = "webtest";
 
   src = fetchPypi {
-    inherit pname version;
+    pname = "WebTest";
+    inherit version;
     sha256 = "4221020d502ff414c5fba83c1213985b83219cb1cc611fe58aa4feaf96b5e062";
   };
 
@@ -26,7 +26,9 @@ buildPythonPackage rec {
     substituteInPlace setup.py --replace "nose<1.3.0" "nose"
   '';
 
-  propagatedBuildInputs = [ nose webob six beautifulsoup4 waitress mock pyquery wsgiproxy2 PasteDeploy coverage ];
+  propagatedBuildInputs = [ webob six beautifulsoup4 waitress ];
+
+  checkInputs = [ nose mock PasteDeploy wsgiproxy2 pyquery ];
 
   meta = with stdenv.lib; {
     description = "Helper to test WSGI applications";