Merge pull request #202634 from r-ryantm/auto-update/python310Packages.persistent

python310Packages.persistent: 4.9.2 -> 4.9.3
This commit is contained in:
Fabian Affolter 2022-11-24 07:46:49 +01:00 committed by GitHub
commit 92902c8116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "persistent";
version = "4.9.2";
version = "4.9.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-8j6yXqRbvKa/YgSwKKCn6qFz0ngdaP9XzVhhzBoNDtA=";
hash = "sha256-piFSIf6zlV1IX6kMe87E+yllDOOco9DBEmcQOS4Nwtw=";
};
nativeBuildInputs = [
@ -37,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Automatic persistence for Python objects";
homepage = "https://github.com/zopefoundation/persistent/";
changelog = "https://github.com/zopefoundation/persistent/blob/${version}/CHANGES.rst";
license = licenses.zpl21;
maintainers = with maintainers; [ ];
};