22 lines
443 B
Nix
22 lines
443 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 ];
|
|
};
|
|
|
|
}
|