python3Packages.zope-testing: 6.0 -> 6.1

https://github.com/zopefoundation/zope.testing/blob/6.1/CHANGES.rst

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:40:54 +01:00
parent a004495b93
commit 2f4b7cb7ea
@@ -9,21 +9,16 @@
buildPythonPackage rec {
pname = "zope-testing";
version = "6.0";
version = "6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "zopefoundation";
repo = "zope.testing";
tag = version;
hash = "sha256-px1+lS1U0lmmQrXJuxFTsX3N8e2mj5Yhckfis5++EX8=";
hash = "sha256-dAUiG8DxlhQKMBXh49P0CDC9UjqAYjB+2vVCTI36cgc=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools ==" "setuptools >="
'';
build-system = [ setuptools ];
doCheck = !isPyPy;
@@ -39,7 +34,7 @@ buildPythonPackage rec {
meta = {
description = "Zope testing helpers";
homepage = "https://github.com/zopefoundation/zope.testing";
changelog = "https://github.com/zopefoundation/zope.testing/blob/${version}/CHANGES.rst";
changelog = "https://github.com/zopefoundation/zope.testing/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.zpl21;
maintainers = [ ];
};