~ruther/guix-local

ec3054deec440b1b1dd130ddf5b4d1cd41c79342 — Sharlatan Hellseher 8 months ago 26fddd2
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
1 files changed, 15 insertions(+), 7 deletions(-)

M gnu/packages/python-compression.scm
M gnu/packages/python-compression.scm => gnu/packages/python-compression.scm +15 -7
@@ 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")