mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.webtest: disable for python2
python2 tries to import paste.deploy, which is no longer valid
This commit is contained in:
parent
dd5522ad53
commit
4ba99e2361
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, nose
|
||||
, webob
|
||||
, six
|
||||
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue