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