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 = "An event publishing system";
18 homepage = "https://pypi.org/project/zope.event/";
19 license = licenses.zpl20;
20 maintainers = with maintainers; [ goibhniu ];
21 };
22}