guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c010b88bcaea9e9b3f91283ac03ca936bd8dfe17
Author: Sharlatan Hellseher <[email protected]>
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 77ed0d3ba2..251a4813ee 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -805,19 +805,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")