3
0
Fork 0
forked from mirrors/nixpkgs

zope.testing: 4.1.2 -> 4.1.3 (also, fix pypy build)

This commit is contained in:
Domen Kožar 2014-08-23 17:38:28 +02:00
parent e083de9c29
commit 3194d5cc32
2 changed files with 6 additions and 3 deletions

View file

@ -81,6 +81,7 @@ let
passthru = {
inherit zlibSupport libPrefix;
executable = "pypy";
isPypy = true;
};
enableParallelBuilding = true;

View file

@ -9087,12 +9087,14 @@ rec {
zope_testing = buildPythonPackage rec {
name = "zope.testing-${version}";
version = "4.1.2";
version = "4.1.3";
src = fetchurl {
url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.zip";
md5 = "01c30c342c6a18002a762bd5d320a6e9";
url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.tar.gz";
md5 = "6c73c5b668a67fdc116a25b884058ed9";
};
doCheck = !python.isPypy;
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];