diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-13 21:58:15 +0100 |
|---|---|---|
| committer | Andrew Tropin <andrew@trop.in> | 2025-08-31 15:24:48 +0700 |
| commit | 313c8f53da3f311f47c42876b2225674c54c96ef (patch) | |
| tree | fa9a7221590ead274a3ea2749a627bdfbe12faa1 /gnu/packages/python-compression.scm | |
| parent | 5cf617dbfb92903ceddbef39aab51a977d9ab9fd (diff) | |
gnu: Add python-uncompresspy.
* gnu/packages/python-compression.scm (python-uncompresspy): New variable.
Change-Id: I8981485e342bafeea1dd188a069f41916f793ca0
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 22 |
1 files changed, 22 insertions, 0 deletions
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") |
