guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 7306bf86c6b74da0a19356875d62303a17f09029 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Tue Jul 15 23:48:56 2025 +0100
gnu: python-zipp: Update to 3.23.0. * gnu/packages/python-compression.scm (python-zipp): Update to 3.23.0. [build-system]: Use pypproject. [arguments] <tests?>: Disable them for now as test suite require extra packaging. [propagated-inputs]: Remove python-more-itertools. [native-inputs]: Add python-more-itertools, python-pytest, python-setuptools, and python-wheel. Change-Id: Iffd8dbafe096d91bc7bb92366d7136074af662ba --- gnu/packages/python-compression.scm | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 683afae035..edfdc6d515 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -796,19 +796,27 @@ Python.") (define-public python-zipp (package (name "python-zipp") - (version "1.0.0") + (version "3.23.0") (source (origin (method url-fetch) (uri (pypi-uri "zipp" version)) (sha256 - (base32 - "0v3qayhqv7vyzydpydwcp51bqciw8p2ajddw68x5k8zppc0vx3yk")))) - (build-system python-build-system) - (propagated-inputs - (list python-more-itertools)) + (base32 "0rj182i2d7d2bz067zrk39s19j09xsxkzprl82fqql8ji9c5fwd0")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;TODO: Tests requrie extra packaging (native-inputs - (list python-setuptools-scm)) + (list ;; python-big-o + ;; python-coherent-licensed + ;; python-jaraco-functools ; introduces cycle + ;; python-jaraco-itertools + ;; python-jaraco-test ; introduces cycle + python-more-itertools + python-pytest + ;; python-pytest-ignore-flaky + python-setuptools + python-setuptools-scm + python-wheel)) (home-page "https://github.com/jaraco/zipp") (synopsis "Backport of pathlib-compatible object wrapper for zip files")