pythonPackages.zope_event: refactor move to python-modules
This commit is contained in:
22
pkgs/development/python-modules/zope_event/default.nix
Normal file
22
pkgs/development/python-modules/zope_event/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope.event";
|
||||
version = "4.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1w858k9kmgzfj36h65kp27m9slrmykvi5cjq6c119xqnaz5gdzgm";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An event publishing system";
|
||||
homepage = https://pypi.python.org/pypi/zope.event;
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user