guix_mirror_bot pushed a commit to branch astro-update
in repository guix.

commit 159484909f0ea946cb1a07e39753415dabce602a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 17 12:14:44 2026 +0100

    gnu: Add python-unlzw-cython.
    
    * gnu/packages/python-compression.scm (python-unlzw-cython): New variable.
---
 gnu/packages/python-compression.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-compression.scm 
b/gnu/packages/python-compression.scm
index d0e9e7919c8..fc6aa2c12c3 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -999,6 +999,35 @@ files (.Z), such as the ones created by Unix's shell tool 
compress.")
 Python.")
     (license license:bsd-3)))
 
+(define-public python-unlzw-cython
+  (package
+    (name "python-unlzw-cython")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/AlecThomson/unlzw-cython";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "147j0aixkrd86vb22jppkznyk2qhk2kkzmdz3w2am0gng0g4d41i"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-cython
+           python-hatch-cython
+           python-hatch-vcs
+           python-hatchling
+           python-pytest
+           python-setuptools))
+    (home-page "https://github.com/AlecThomson/unlzw-cython";)
+    (synopsis "Cython unlzw port to open .Z files")
+    (description
+     "This package provides a cython-accelerated decompression module for
+@code{.Z} files compressed using the Unix @code{compress} utility.  This is a
+fork of @url{https://github.com/scivision/unlzw3, unlzw3}.")
+    (license license:zlib)))
+
 (define-public python-unlzw3
   (package
     (name "python-unlzw3")

Reply via email to