2024-05-22 17:32:03 +02:00

23 lines
447 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "zope.event";
version = "4.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-gdmIEwRvyGzEE242mP7mKKMoL5wyDbGGWMIXSSNfzoA=";
};
meta = with lib; {
description = "An event publishing system";
homepage = "https://pypi.org/project/zope.event/";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}