python.pkgs.plone-testing: fix build

This commit is contained in:
rnhmjoj 2019-01-07 11:09:56 +01:00
parent a0dc57e27b
commit bb9edd458e
No known key found for this signature in database
GPG Key ID: 91BE884FBA4B591A

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, zope_testing
, setuptools
}:
@ -14,7 +15,7 @@ buildPythonPackage rec {
sha256 = "db71bde0d4d3c273dbba8c7a2ab259a42f038eca74184da36c5aab61e90e8dd7";
};
propagatedBuildInputs = [ setuptools zope_testing ];
propagatedBuildInputs = [ six setuptools zope_testing ];
# Huge amount of testing dependencies (including Zope2)
doCheck = false;
@ -24,4 +25,4 @@ buildPythonPackage rec {
homepage = https://github.com/plone/plone.testing;
license = lib.licenses.bsd3;
};
}
}