pythonpackages.zope_interface: 4.1.3 -> 4.4.2

This commit is contained in:
adisbladis 2017-07-14 11:05:31 +08:00
parent 4ebe73dc1b
commit 8ea9602ed8
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 26 additions and 16 deletions

View File

@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_event
}:
buildPythonPackage rec {
pname = "zope.interface";
version = "4.4.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "4e59e427200201f69ef82956ddf9e527891becf5b7cde8ec3ce39e1d0e262eb0";
};
propagatedBuildInputs = [ zope_event ];
meta = with stdenv.lib; {
description = "Zope.Interface";
homepage = http://zope.org/Products/ZopeInterface;
license = licenses.zpt20;
maintainers = [ maintainers.goibhniu ];
};
}

View File

@ -26298,23 +26298,8 @@ EOF
};
zope_interface = buildPythonPackage rec {
name = "zope.interface-4.1.3";
zope_interface = callPackage ../development/python-modules/zope_interface { };
src = pkgs.fetchurl {
url = "mirror://pypi/z/zope.interface/${name}.tar.gz";
sha256 = "0ks8h73b2g4bkad821qbv0wzjppdrwys33i7ka45ik3wxjg1l8if";
};
propagatedBuildInputs = with self; [ zope_event ];
meta = {
description = "Zope.Interface";
homepage = http://zope.org/Products/ZopeInterface;
license = licenses.zpt20;
maintainers = with maintainers; [ goibhniu ];
};
};
hgsvn = buildPythonPackage rec {
name = "hgsvn-0.3.11";