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
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six
, zope_testing , zope_testing
, setuptools , setuptools
}: }:
@ -14,7 +15,7 @@ buildPythonPackage rec {
sha256 = "db71bde0d4d3c273dbba8c7a2ab259a42f038eca74184da36c5aab61e90e8dd7"; sha256 = "db71bde0d4d3c273dbba8c7a2ab259a42f038eca74184da36c5aab61e90e8dd7";
}; };
propagatedBuildInputs = [ setuptools zope_testing ]; propagatedBuildInputs = [ six setuptools zope_testing ];
# Huge amount of testing dependencies (including Zope2) # Huge amount of testing dependencies (including Zope2)
doCheck = false; doCheck = false;