Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 22 lines 417 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "zope.event"; 9 version = "4.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-gdmIEwRvyGzEE242mP7mKKMoL5wyDbGGWMIXSSNfzoA="; 14 }; 15 16 meta = with lib; { 17 description = "Event publishing system"; 18 homepage = "https://pypi.org/project/zope.event/"; 19 license = licenses.zpl20; 20 maintainers = [ ]; 21 }; 22}