guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit aab0a8cf5ec9b18eea8d82f2d5a6786818da1d90
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 10:12:38 2026 +0100

    gnu: python-zipp: Update to 3.23.0.
    
    * gnu/packages/python-compression.scm (python-zipp): Update to 3.23.0.
    [source]: Switch to git-fetch.
    [arguments] <tests?>: Enable.
    [native-inputs]: Remove python-more-itertools and python-wheel; add
    python-jaraco-itertools and python-jaraco-test.
    [description]: Mention the correct module and object of backport.
    
    Change-Id: I84671bbf80f2cd944c4347f6ac0cdc5d7b426e6f
---
 gnu/packages/python-compression.scm | 27 +++++++++++----------------
 1 file changed, 11 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/python-compression.scm 
b/gnu/packages/python-compression.scm
index 7351ec39f2..218edf1575 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -1039,30 +1039,25 @@ provides handling of symlinks, and exception 
management.")
     (version "3.23.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "zipp" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jaraco/zipp";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0rj182i2d7d2bz067zrk39s19j09xsxkzprl82fqql8ji9c5fwd0"))))
+        (base32 "1r8yk1flzlblif7z5ib94mvl12vvwlzhi42vnzrdnaimr80kpal9"))))
     (build-system pyproject-build-system)
-    (arguments (list #:tests? #f))       ;TODO: Tests require extra packaging
     (native-inputs
-     (list ;; python-big-o
-           ;; python-coherent-licensed
-           ;; python-jaraco-functools ; introduces cycle
-           ;; python-jaraco-itertools
-           ;; python-jaraco-test ; introduces cycle
-           python-more-itertools
+     (list python-jaraco-itertools
+           python-jaraco-test
            python-pytest
-           ;; python-pytest-ignore-flaky
            python-setuptools
-           python-setuptools-scm
-           python-wheel))
+           python-setuptools-scm))
     (home-page "https://github.com/jaraco/zipp";)
-    (synopsis
-     "Backport of pathlib-compatible object wrapper for zip files")
+    (synopsis "Backport of pathlib-compatible object wrapper for zip files")
     (description
      "This package provides a @code{pathlib}-compatible @code{Zipfile} object
-wrapper.  It provides a backport of the @code{Path} object.")
+wrapper.  It provides a backport of the @code{zipfile.Path} object.")
     (license license:expat)))
 
 (define-public python-deflate

Reply via email to