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