2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-07-14 04:05:31 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_event
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.interface";
|
2020-11-29 14:04:47 +00:00
|
|
|
version = "5.2.0";
|
2020-06-04 04:51:38 +01:00
|
|
|
|
2017-07-14 04:05:31 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:47 +00:00
|
|
|
sha256 = "8251f06a77985a2729a8bdbefbae79ee78567dddc3acbd499b87e705ca59fe24";
|
2017-07-14 04:05:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_event ];
|
|
|
|
|
2020-06-04 04:51:38 +01:00
|
|
|
doCheck = false; # Circular deps.
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-14 04:05:31 +01:00
|
|
|
description = "Zope.Interface";
|
2020-11-27 00:29:13 +00:00
|
|
|
homepage = "https://zope.org/Products/ZopeInterface";
|
2017-08-06 12:49:18 +01:00
|
|
|
license = licenses.zpl20;
|
2017-07-14 04:05:31 +01:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|