python310Packages.zope-cachedescriptors: init at 4.3.1

This commit is contained in:
Robert Schütz 2022-06-11 00:53:00 +00:00
parent 51b2b75052
commit 9fcfdda1ac
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "zope-cachedescriptors";
version = "4.3.1";
format = "setuptools";
src = fetchPypi {
pname = "zope.cachedescriptors";
inherit version;
sha256 = "1f4d1a702f2ea3d177a1ffb404235551bb85560100ec88e6c98691734b1d194a";
};
propagatedBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"src/zope/cachedescriptors/tests.py"
];
pythonImportsCheck = [ "zope.cachedescriptors" ];
meta = {
description = "Method and property caching decorators";
homepage = "https://github.com/zopefoundation/zope.cachedescriptors";
license = lib.licenses.zpl21;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -11633,6 +11633,8 @@ in {
zope_broken = callPackage ../development/python-modules/zope_broken { };
zope-cachedescriptors = callPackage ../development/python-modules/zope-cachedescriptors { };
zope_component = callPackage ../development/python-modules/zope_component { };
zope_configuration = callPackage ../development/python-modules/zope_configuration { };