diff options
author | Christopher Baines <[email protected]> | 2024-04-09 16:44:22 +0100 |
---|---|---|
committer | Christopher Baines <[email protected]> | 2024-04-09 16:46:34 +0100 |
commit | 6cae1db889f62051580d5a365f62585412a53a8c (patch) | |
tree | 4d3db074d50ca3e2109cced17bec77f207a0c1fd /gnu/packages/python-compression.scm | |
parent | 410e699e0933653e69d03a4cdadf11854c6723f4 (diff) | |
parent | 35e1d9247e39f3c91512cf3d9ef1467962389e35 (diff) |
Merge remote-tracking branch 'savannah/master' into mesa-updates
Change-Id: Iad185e2ced97067b3dff8fd722435a6c5e2c00e5
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r-- | gnu/packages/python-compression.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 16e9fc7a4b..947dd189d3 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2020, 2022, 2023 Marius Bakke <[email protected]> ;;; Copyright © 2021 Brendan Tildesley <[email protected]> ;;; Copyright © 2023, 2024 Troy Figiel <[email protected]> +;;; Copyright © 2024 TakeV <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -717,6 +718,26 @@ install: libbitshuffle.so wrapper. It provides a backport of the @code{Path} object.") (license license:expat))) +(define-public python-zipstream-ng + (package + (name "python-zipstream-ng") + (version "1.7.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "zipstream-ng" version)) + (sha256 + (base32 "1z4zdqqs2rg3z36khgj96bpggv34av337isfv7yxg32prawj687r")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-pytest-cov)) + (home-page "https://github.com/pR0Ps/zipstream-ng") + (synopsis "Streamable zip file generator") + (description + "This package provides a modern and easy to use streamable zip file +generator") + (license license:lgpl3))) + (define-public python-zopfli (package (name "python-zopfli") |