python.pkgs.zope-hookable: init at 4.2.0
This commit is contained in:
parent
5a778bcac7
commit
5c1367a439
24
pkgs/development/python-modules/zope-hookable/default.nix
Normal file
24
pkgs/development/python-modules/zope-hookable/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_testing
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope-hookable";
|
||||
version = "4.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "zope.hookable";
|
||||
inherit version;
|
||||
sha256 = "c1df3929a3666fc5a0c80d60a0c1e6f6ef97c7f6ed2f1b7cf49f3e6f3d4dde15";
|
||||
};
|
||||
|
||||
checkInputs = [ zope_testing ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Supports the efficient creation of “hookable” objects";
|
||||
homepage = http://github.com/zopefoundation/zope.hookable;
|
||||
license = licenses.zpl21;
|
||||
};
|
||||
}
|
@ -4419,6 +4419,8 @@ in {
|
||||
|
||||
zope_filerepresentation = callPackage ../development/python-modules/zope_filerepresentation { };
|
||||
|
||||
zope-hookable = callPackage ../development/python-modules/zope-hookable { };
|
||||
|
||||
zope_i18n = callPackage ../development/python-modules/zope_i18n { };
|
||||
|
||||
zope_i18nmessageid = callPackage ../development/python-modules/zope_i18nmessageid { };
|
||||
|
Loading…
Reference in New Issue
Block a user