1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "zope.event";
8 version = "4.6";
9
10 src = fetchPypi {
11 inherit pname version;
12 hash = "sha256-gdmIEwRvyGzEE242mP7mKKMoL5wyDbGGWMIXSSNfzoA=";
13 };
14
15 meta = with lib; {
16 description = "An event publishing system";
17 homepage = "https://pypi.org/project/zope.event/";
18 license = licenses.zpl20;
19 maintainers = with maintainers; [ goibhniu ];
20 };
21
22}