My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_event/default.nix

22 lines
460 B

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