Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 27 lines 597 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_event 5, zope_component 6}: 7 8buildPythonPackage rec { 9 pname = "zope.lifecycleevent"; 10 version = "4.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "7ec39087cc1524e55557e7d9dc6295eb1b95b09b125e293c0e2dd068574f0aee"; 15 }; 16 17 propagatedBuildInputs = [ zope_event zope_component ]; 18 19 meta = with stdenv.lib; { 20 homepage = https://github.com/zopefoundation/zope.lifecycleevent; 21 description = "Object life-cycle events"; 22 license = licenses.zpl20; 23 maintainers = with maintainers; [ goibhniu ]; 24 broken = true; 25 }; 26 27}