pythonPAckages.zope_proxy: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 10:37:07 -04:00
parent 5537f6a402
commit 00f0446487
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 18 deletions

View file

@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_interface
}:
buildPythonPackage rec {
pname = "zope.proxy";
version = "4.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4";
};
propagatedBuildInputs = [ zope_interface ];
# circular deps
doCheck = false;
meta = with stdenv.lib; {
homepage = http://github.com/zopefoundation/zope.proxy;
description = "Generic Transparent Proxies";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}

View file

@ -4208,24 +4208,7 @@ in {
zope_location = callPackage ../development/python-modules/zope_location { };
zope_proxy = buildPythonPackage rec {
name = "zope.proxy-4.1.6";
src = pkgs.fetchurl {
url = "mirror://pypi/z/zope.proxy/${name}.tar.gz";
sha256 = "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4";
};
propagatedBuildInputs = with self; [ zope_interface ];
# circular deps
doCheck = false;
meta = {
maintainers = with maintainers; [ goibhniu ];
};
};
zope_proxy = callPackage ../development/python-modules/zope_proxy { };
zope_schema = buildPythonPackage rec {
name = "zope.schema-4.4.2";