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
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 ];
};
}