diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-15 23:48:56 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:46 +0100 |
| commit | ec3054deec440b1b1dd130ddf5b4d1cd41c79342 (patch) | |
| tree | 7ffaaa1fa5815b5947c3028939ab1356d1751018 /gnu/packages/python-compression.scm | |
| parent | 26fddd2e56f52e23414808d40ff5198e96c28bee (diff) | |
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
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 55d72ebd59f..d3f8bdd09bf 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") |
