guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 313c8f53da3f311f47c42876b2225674c54c96ef
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 bfe187d3c0..77ed0d3ba2 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -753,6 +753,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")