1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, zope_interface
5}:
6
7buildPythonPackage rec {
8 pname = "zope.proxy";
9 version = "4.3.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "563c2454b2d0f23bca54d2e0e4d781149b7b06cb5df67e253ca3620f37202dd2";
14 };
15
16 propagatedBuildInputs = [ zope_interface ];
17
18 # circular deps
19 doCheck = false;
20
21 meta = with stdenv.lib; {
22 homepage = http://github.com/zopefoundation/zope.proxy;
23 description = "Generic Transparent Proxies";
24 license = licenses.zpl20;
25 maintainers = with maintainers; [ goibhniu ];
26 };
27
28}