nixpkgs/pkgs/development/python-modules/zope_event/default.nix

23 lines
469 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "zope.event";
2018-11-04 11:35:23 +01:00
version = "4.4";
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:23 +01:00
sha256 = "69c27debad9bdacd9ce9b735dad382142281ac770c4a432b533d6d65c4614bcf";
};
meta = with stdenv.lib; {
description = "An event publishing system";
homepage = https://pypi.python.org/pypi/zope.event;
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}