e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
26 lines
526 B
Nix
26 lines
526 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 ];
|
|
};
|
|
}
|