pythonpackages.zope_interface: 4.1.3 -> 4.4.2
This commit is contained in:
parent
4ebe73dc1b
commit
8ea9602ed8
25
pkgs/development/python-modules/zope_interface/default.nix
Normal file
25
pkgs/development/python-modules/zope_interface/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user