guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit ee3d2baffe54e3e3f1bbef103daa0bb4f00a6cf6 Author: Sharlatan Hellseher <[email protected]> AuthorDate: Wed Aug 13 21:58:15 2025 +0100 gnu: Add python-uncompresspy. * gnu/packages/python-compression.scm (python-uncompresspy): New variable. Change-Id: I8981485e342bafeea1dd188a069f41916f793ca0 --- gnu/packages/python-compression.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 9166620f28..c05581a44b 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -763,6 +763,28 @@ install: libbitshuffle.so (inputs '()) (native-inputs '()))) +(define-public python-uncompresspy + (package + (name "python-uncompresspy") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "uncompresspy" version)) + (sha256 + (base32 "1110dipshnijhq6dk5dxzxx3zpynm6dx5kcc430fw24b8xwlc9in")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests + (native-inputs + (list python-setuptools-next)) + (home-page "https://github.com/kYwzor/uncompresspy") + (synopsis "Uncompressing LZW files in Python") + (description + "This package implement a pure Python module for uncompressing LZW +files (.Z), such as the ones created by Unix's shell tool compress.") + (license license:bsd-3))) + (define-public python-unix-ar (package (name "python-unix-ar")
