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