1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_event
5}:
6
7buildPythonPackage rec {
8 pname = "zope.interface";
9 version = "5.3.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b18a855f8504743e0a2d8b75d008c7720d44e4c76687e13f959e35d9a13eb397";
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}