forked from mirrors/nixpkgs
zope.testing: 4.1.2 -> 4.1.3 (also, fix pypy build)
This commit is contained in:
parent
e083de9c29
commit
3194d5cc32
|
@ -81,6 +81,7 @@ let
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit zlibSupport libPrefix;
|
inherit zlibSupport libPrefix;
|
||||||
executable = "pypy";
|
executable = "pypy";
|
||||||
|
isPypy = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
|
@ -9087,12 +9087,14 @@ rec {
|
||||||
|
|
||||||
zope_testing = buildPythonPackage rec {
|
zope_testing = buildPythonPackage rec {
|
||||||
name = "zope.testing-${version}";
|
name = "zope.testing-${version}";
|
||||||
version = "4.1.2";
|
version = "4.1.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.zip";
|
url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.tar.gz";
|
||||||
md5 = "01c30c342c6a18002a762bd5d320a6e9";
|
md5 = "6c73c5b668a67fdc116a25b884058ed9";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
doCheck = !python.isPypy;
|
||||||
|
|
||||||
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue