10 buildPythonPackage rec {
11 pname = "zope.lifecycleevent";
15 inherit pname version;
16 sha256 = "7ec39087cc1524e55557e7d9dc6295eb1b95b09b125e293c0e2dd068574f0aee";
19 propagatedBuildInputs = [ zope_event zope_component ];
21 # namespace colides with local directory
24 # zope uses pep 420 namespaces for python3, doesn't work with nix + python2
25 pythonImportsCheck = lib.optionals isPy3k [
31 homepage = "https://github.com/zopefoundation/zope.lifecycleevent";
32 description = "Object life-cycle events";
33 license = licenses.zpl20;
34 maintainers = with maintainers; [ goibhniu ];