guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 231ebafaca54b44e65c33625c1b6b4c56b4ce29a Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jul 17 21:50:27 2025 +0100
gnu: python-zope-interface: Update to 7.2. * gnu/packages/python-web.scm (python-zope-interface): Update to 7.2. [native-inputs]: Remove python-coverage, python-nose, python-zope-event, and python-zope-testing; add python-setuptools. Change-Id: I62aeeeecf414dac92c73d0b0c2ce52b1ba9c99cb --- gnu/packages/python-web.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9592a2b150..4206f67618 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4420,19 +4420,18 @@ dispatching systems can be built.") (define-public python-zope-interface (package (name "python-zope-interface") - (version "5.1.0") + (version "7.2") (source (origin (method url-fetch) (uri (pypi-uri "zope.interface" version)) (sha256 (base32 - "03nrl6b8cb600dnnh46y149awvrm0gxyqgwq5hdw3lvys8mw9r20")))) - (build-system python-build-system) + "1zi84y3s90jylv8xfvdlr05f9xf7ca1p6bidngsxlk7fs6iz2jcb")))) + (build-system pyproject-build-system) (arguments '(#:tests? #f)) ; test suite can't find python-zope-testing (native-inputs - (list python-coverage python-nose python-zope-event - python-zope-testing)) + (list python-setuptools)) (home-page "https://github.com/zopefoundation/zope.interface") (synopsis "Python implementation of the \"design by contract\" methodology")