fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
532 B
Nix
27 lines
532 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zope-event,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.interface";
|
|
version = "5.5.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-v+4fP/YhQ4GUmeNI9bin86oCWfmspeDdrnOR0Fnc5nE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope-event ];
|
|
|
|
doCheck = false; # Circular deps.
|
|
|
|
meta = with lib; {
|
|
description = "Zope.Interface";
|
|
homepage = "https://zope.org/Products/ZopeInterface";
|
|
license = licenses.zpl20;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|