2017-07-14 03:05:31 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_event
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.interface";
|
2020-06-04 03:51:38 +00:00
|
|
|
version = "5.1.0";
|
|
|
|
|
2017-07-14 03:05:31 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-04 03:51:38 +00:00
|
|
|
sha256 = "03nrl6b8cb600dnnh46y149awvrm0gxyqgwq5hdw3lvys8mw9r20";
|
2017-07-14 03:05:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_event ];
|
|
|
|
|
2020-06-04 03:51:38 +00:00
|
|
|
doCheck = false; # Circular deps.
|
|
|
|
|
2017-07-14 03:05:31 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Zope.Interface";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://zope.org/Products/ZopeInterface";
|
2017-08-06 11:49:18 +00:00
|
|
|
license = licenses.zpl20;
|
2017-07-14 03:05:31 +00:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|