Merge pull request #200952 from r-ryantm/auto-update/python3.10-ZODB

python310Packages.zodb: 5.7.0 -> 5.8.0
This commit is contained in:
Fabian Affolter 2022-12-05 00:18:37 +01:00 committed by GitHub
commit 584ca5f34d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,11 +16,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ZODB"; pname = "ZODB";
version = "5.7.0"; version = "5.8.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-+kC7wF7NoewkNc0MbdAqE7dphGBVikYENm9qCmhAHNM="; sha256 = "sha256-KNugDvYm3hBYnt7auFrQ8O33KSXnXTahXJnGOsBf52Q=";
}; };
# remove broken test # remove broken test
@ -50,7 +50,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Zope Object Database: object database and persistence"; description = "Zope Object Database: object database and persistence";
homepage = "https://pypi.python.org/pypi/ZODB"; homepage = "https://zodb-docs.readthedocs.io/";
changelog = "https://github.com/zopefoundation/ZODB/blob/${version}/CHANGES.rst";
license = licenses.zpl21; license = licenses.zpl21;
maintainers = with maintainers; [ goibhniu ]; maintainers = with maintainers; [ goibhniu ];
}; };