diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-04 00:36:29 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-04 01:39:29 +0100 |
| commit | 222498ef7536a70d6f7aaeaa0ccbec1d5fb4834a (patch) | |
| tree | 45d6106151d62f7de7fc0348402bbdf7e89f3f29 /gnu/packages/python-xyz.scm | |
| parent | f75e8d3bd9cbebcfd019a3a5251cdae4eb43880e (diff) | |
gnu: python-xopen: Update to 1.8.0.
* gnu/packages/python-xyz.scm (python-xopen): Update to 1.8.0.
[propagated-inputs]: Remove python-typing-extensions.
[native-inputs]: Remove python-wheel.
Change-Id: I0c2c14a787bfab74af70ebbc335670b00ec568a4
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 829b349990..3527a2c817 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25851,20 +25851,25 @@ runtime (rather than during a preprocessing step).") (define-public python-xopen (package (name "python-xopen") - (version "1.7.0") + ;; TODO: Newer versions require zlib-ng: + ;; <https://github.com/zlib-ng/zlib-ng>, + ;; <https://github.com/pycompression/python-zlib-ng>. + (version "1.8.0") (source (origin (method url-fetch) (uri (pypi-uri "xopen" version)) (sha256 - (base32 - "17qda88irg77qdm2kkxq4zgdhwfgykcpdgd4cx3xfpp9k219q7wh")))) + (base32 "0h08wpd5zwnlzwnbbbhahbcs69kzsfbaaigqw0viq6ri8n4zrh00")))) (build-system pyproject-build-system) - (propagated-inputs - (list pigz python-isal python-typing-extensions)) + ;; tests: 343 passed, 5 skipped (native-inputs - (list python-pytest python-pytest-timeout python-setuptools-scm - python-setuptools python-wheel)) + (list python-pytest + python-pytest-timeout + python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list pigz python-isal)) (home-page "https://github.com/marcelm/xopen/") (synopsis "Open compressed files transparently") (description "This module provides an @code{xopen} function that works |
