python.pkgs.zope-hookable: init at 4.2.0

This commit is contained in:
Robert Schütz 2018-12-02 22:05:32 +01:00 committed by Frederik Rietdijk
parent 5a778bcac7
commit 5c1367a439
2 changed files with 26 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };