Skip to content

Commit

Permalink
pythonPackages.webtest: disable for python2
Browse files Browse the repository at this point in the history
python2 tries to import paste.deploy, which is no longer valid
  • Loading branch information
Jonathan Ringer authored and FRidh committed Oct 18, 2019
1 parent dd5522a commit 4ba99e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/webtest/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, nose
, webob
, six
Expand All @@ -15,6 +16,7 @@
buildPythonPackage rec {
version = "2.0.32";
pname = "webtest";
disabled = isPy27; # paste.deploy is not longer a valid import

src = fetchPypi {
pname = "WebTest";
Expand Down

0 comments on commit 4ba99e2

Please sign in to comment.