pythonPackages: bump some zope packages

This commit is contained in:
Domen Kožar 2016-02-10 23:04:41 +00:00
parent 4538e70661
commit 7383abff09

View File

@ -22035,15 +22035,18 @@ in modules // {
zope_exceptions = buildPythonPackage rec {
name = "zope.exceptions-${version}";
version = "4.0.5";
version = "4.0.8";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/z/zope.exceptions/${name}.tar.gz";
md5 = "c95569fcb444ae541777de7ae5297492";
sha256 = "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl";
};
propagatedBuildInputs = with self; [ zope_interface ];
# circular deps
doCheck = false;
meta = {
description = "Exception interfaces and implementations";
homepage = http://pypi.python.org/pypi/zope.exceptions;
@ -22139,15 +22142,18 @@ in modules // {
zope_proxy = buildPythonPackage rec {
name = "zope.proxy-4.1.4";
name = "zope.proxy-4.1.6";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/z/zope.proxy/${name}.tar.gz";
md5 = "3bcaf8b8512a99649ecf2f158c11d05b";
sha256 = "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4";
};
propagatedBuildInputs = with self; [ zope_interface ];
# circular deps
doCheck = false;
meta = {
maintainers = with maintainers; [ goibhniu ];
};
@ -22276,18 +22282,12 @@ in modules // {
propagatedBuildInputs = with self; [ zope_interface zope_exceptions zope_testing six ] ++ optional (!python.is_py3k or false) subunit;
# https://github.com/zopefoundation/zope.testrunner/issues/35
doCheck = !(isPy27 || isPy34);
meta = {
description = "A flexible test runner with layer support";
homepage = http://pypi.python.org/pypi/zope.testrunner;
license = licenses.zpt20;
maintainers = with maintainers; [ goibhniu ];
};
# Python 3.5 is not yet supported.
disabled = isPy35;
};
@ -22311,11 +22311,11 @@ in modules // {
zope_interface = buildPythonPackage rec {
name = "zope.interface-4.1.1";
name = "zope.interface-4.1.3";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/z/zope.interface/${name}.tar.gz";
md5 = "edcd5f719c5eb2e18894c4d06e29b6c6";
sha256 = "0ks8h73b2g4bkad821qbv0wzjppdrwys33i7ka45ik3wxjg1l8if";
};
propagatedBuildInputs = with self; [ zope_event ];