2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2017-07-13 20:05:31 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_event
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.interface";
|
2021-03-24 02:28:33 -07:00
|
|
|
version = "5.3.0";
|
2020-06-03 20:51:38 -07:00
|
|
|
|
2017-07-13 20:05:31 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 02:28:33 -07:00
|
|
|
sha256 = "b18a855f8504743e0a2d8b75d008c7720d44e4c76687e13f959e35d9a13eb397";
|
2017-07-13 20:05:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_event ];
|
|
|
|
|
2020-06-03 20:51:38 -07:00
|
|
|
doCheck = false; # Circular deps.
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-07-13 20:05:31 -07:00
|
|
|
description = "Zope.Interface";
|
2020-11-26 16:29:13 -08:00
|
|
|
homepage = "https://zope.org/Products/ZopeInterface";
|
2017-08-06 04:49:18 -07:00
|
|
|
license = licenses.zpl20;
|
2017-07-13 20:05:31 -07:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|