0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
26 lines
528 B
Nix
26 lines
528 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_event
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.interface";
|
|
version = "5.5.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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 ];
|
|
};
|
|
}
|