1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, zope_event
5}:
6
7buildPythonPackage rec {
8 pname = "zope.interface";
9 version = "5.1.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "03nrl6b8cb600dnnh46y149awvrm0gxyqgwq5hdw3lvys8mw9r20";
14 };
15
16 propagatedBuildInputs = [ zope_event ];
17
18 doCheck = false; # Circular deps.
19
20 meta = with stdenv.lib; {
21 description = "Zope.Interface";
22 homepage = "http://zope.org/Products/ZopeInterface";
23 license = licenses.zpl20;
24 maintainers = [ maintainers.goibhniu ];
25 };
26}