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