From ce81ec8bdac401cd5cb371b4711c80c52eef9631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Pastor=20P=C3=A9rez?= Date: Fri, 22 May 2026 14:17:14 +0200 Subject: 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 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-compression.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 5ffcc6ccb2f..d3a6a8db3ad 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") -- cgit v1.2.3