9 buildPythonPackage rec {
10 pname = "zope.lifecycleevent";
14 inherit pname version;
15 sha256 = "sha256-9ahU6J/5fe6ke/vqN4u77yeJ0uDMkKHB2lfZChzmfLU=";
18 propagatedBuildInputs = [ zope_event zope_component ];
20 # namespace colides with local directory
23 # zope uses pep 420 namespaces for python3, doesn't work with nix + python2
24 pythonImportsCheck = lib.optionals isPy3k [
30 homepage = "https://github.com/zopefoundation/zope.lifecycleevent";
31 description = "Object life-cycle events";
32 license = licenses.zpl20;
33 maintainers = with maintainers; [ goibhniu ];