python3Packages.persistent: 5.2 -> 6.0

https://github.com/zopefoundation/persistent/blob/6.0/CHANGES.rst
This commit is contained in:
Martin Weinelt
2024-06-24 12:15:48 +02:00
parent ad63741109
commit 25551b7e05
@@ -1,35 +1,38 @@
{
lib,
buildPythonPackage,
cffi,
fetchPypi,
isPyPy,
# build-systems
setuptools,
# dependencies
cffi,
zope-deferredimport,
zope-interface,
sphinx,
manuel,
pythonOlder,
}:
buildPythonPackage rec {
pname = "persistent";
version = "5.2";
format = "setuptools";
version = "6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2+pdH/nbTkUco5vAtCqepTfmyskoKujAeA+4/64+yDQ=";
hash = "sha256-CDZQwP/ty4gDKJY8KUuVEaArawXkIec3p9Vfnu2I+18=";
};
nativeBuildInputs = [
sphinx
manuel
];
build-system = [ setuptools ];
propagatedBuildInputs = [
zope-interface
cffi
];
zope-deferredimport
]
++ lib.optionals (!isPyPy) [ cffi ];
pythonImportsCheck = [ "persistent" ];