forked from mirrors/nixpkgs
29 lines
566 B
Nix
29 lines
566 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
|
||
|
}
|