Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "zope.event"; 8 version = "4.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "69c27debad9bdacd9ce9b735dad382142281ac770c4a432b533d6d65c4614bcf"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "An event publishing system"; 17 homepage = https://pypi.python.org/pypi/zope.event; 18 license = licenses.zpl20; 19 maintainers = with maintainers; [ goibhniu ]; 20 }; 21 22}