depot/third_party/nixpkgs/pkgs/development/python-modules/zope-event/default.nix

23 lines
443 B
Nix
Raw Normal View History

{ 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 ];
};
}