guix_mirror_bot pushed a commit to branch kernel-updates
in repository guix.

commit ce81ec8bdac401cd5cb371b4711c80c52eef9631
Author: Sergio Pastor PĂ©rez <[email protected]>
AuthorDate: Fri May 22 14:17:14 2026 +0200

    gnu: Add python-jaraco-stream.
    
    * gnu/packages/python-compression.scm (python-jaraco-stream): New variable.
    
    Relates-to: guix/guix!9483, guix/guix#7047
    Reviewed-by: Nicolas Graves <[email protected]>
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-compression.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-compression.scm 
b/gnu/packages/python-compression.scm
index 5ffcc6ccb2..d3a6a8db3a 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -562,6 +562,33 @@ compression algorithm.")
 and decompression by implementing Python bindings for the ISA-L library.")
     (license license:expat)))
 
+(define-public python-jaraco-stream
+  (package
+    (name "python-jaraco-stream")
+    (version "3.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jaraco/jaraco.stream";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0jsmyh37m78gfk70n3j5k5djh6pajn96sbkfi987sjil3r3ix854"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest
+           python-setuptools
+           python-setuptools-scm))
+    (propagated-inputs
+     (list python-more-itertools))
+    (home-page "https://github.com/jaraco/jaraco.stream";)
+    (synopsis "Routines for dealing with data streams")
+    (description
+     "This package includes a set of generators for dynamically loading gzip
+data.  It is geared towards dealing with data streams.")
+    (license license:expat)))
+
 (define-public python-pylsqpack
   (package
     (name "python-pylsqpack")

Reply via email to