2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
44 lines
950 B
Nix
44 lines
950 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, setuptools
|
|
, zope_event
|
|
, zope_interface
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-lifecycleevent";
|
|
version = "5.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.lifecycleevent";
|
|
inherit version;
|
|
hash = "sha256-6tP7SW52FPm1adFtrUt4BSsKwhh1utjWbKNQNS2bb50=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [ zope_event zope_interface ];
|
|
|
|
# namespace colides with local directory
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"zope.lifecycleevent"
|
|
"zope.interface"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/zopefoundation/zope.lifecycleevent";
|
|
description = "Object life-cycle events";
|
|
changelog = "https://github.com/zopefoundation/zope.lifecycleevent/blob/${version}/CHANGES.rst";
|
|
license = licenses.zpl21;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
}
|