summaryrefslogtreecommitdiff
path: root/gnu/packages/python-compression.scm
diff options
context:
space:
mode:
authorTakeV <takev@disroot.org>2024-04-03 18:21:25 -0400
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-04-06 23:27:36 +0100
commit79bab7853b9956c5c785868c889e1019f9708ed9 (patch)
tree8bc5eb348edc4217522a9e465fd93b1c1bf543f5 /gnu/packages/python-compression.scm
parentfd116510b2f4fd731bb775affd2b03329982b65b (diff)
gnu: Add python-zipstream-ng.
* gnu/packages/python-xyz.scm (python-zipstream-ng): New variable. Change-Id: Idf0c0d471aa1eda45cf649874f6a79b6b9a7937b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r--gnu/packages/python-compression.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index 16e9fc7a4b5..947dd189d3d 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -8,6 +8,7 @@
8;;; Copyright © 2020, 2022, 2023 Marius Bakke <marius@gnu.org> 8;;; Copyright © 2020, 2022, 2023 Marius Bakke <marius@gnu.org>
9;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot> 9;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
10;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com> 10;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com>
11;;; Copyright © 2024 TakeV <takev@disroot.org>
11;;; 12;;;
12;;; This file is part of GNU Guix. 13;;; This file is part of GNU Guix.
13;;; 14;;;
@@ -717,6 +718,26 @@ install: libbitshuffle.so
717wrapper. It provides a backport of the @code{Path} object.") 718wrapper. It provides a backport of the @code{Path} object.")
718 (license license:expat))) 719 (license license:expat)))
719 720
721(define-public python-zipstream-ng
722 (package
723 (name "python-zipstream-ng")
724 (version "1.7.1")
725 (source
726 (origin
727 (method url-fetch)
728 (uri (pypi-uri "zipstream-ng" version))
729 (sha256
730 (base32 "1z4zdqqs2rg3z36khgj96bpggv34av337isfv7yxg32prawj687r"))))
731 (build-system pyproject-build-system)
732 (native-inputs
733 (list python-pytest python-pytest-cov))
734 (home-page "https://github.com/pR0Ps/zipstream-ng")
735 (synopsis "Streamable zip file generator")
736 (description
737 "This package provides a modern and easy to use streamable zip file
738generator")
739 (license license:lgpl3)))
740
720(define-public python-zopfli 741(define-public python-zopfli
721 (package 742 (package
722 (name "python-zopfli") 743 (name "python-zopfli")