python.pkgs.webtest: fix build
This commit is contained in:
parent
0f241338c3
commit
1122f9a855
@ -10,7 +10,6 @@
|
|||||||
, pyquery
|
, pyquery
|
||||||
, wsgiproxy2
|
, wsgiproxy2
|
||||||
, PasteDeploy
|
, PasteDeploy
|
||||||
, coverage
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -18,7 +17,8 @@ buildPythonPackage rec {
|
|||||||
pname = "webtest";
|
pname = "webtest";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "WebTest";
|
||||||
|
inherit version;
|
||||||
sha256 = "4221020d502ff414c5fba83c1213985b83219cb1cc611fe58aa4feaf96b5e062";
|
sha256 = "4221020d502ff414c5fba83c1213985b83219cb1cc611fe58aa4feaf96b5e062";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -26,7 +26,9 @@ buildPythonPackage rec {
|
|||||||
substituteInPlace setup.py --replace "nose<1.3.0" "nose"
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Helper to test WSGI applications";
|
description = "Helper to test WSGI applications";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user