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>
This commit is contained in:
TakeV 2024-04-03 18:21:25 -04:00 committed by Sharlatan Hellseher
parent fd116510b2
commit 79bab7853b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8,6 +8,7 @@
;;; Copyright © 2020, 2022, 2023 Marius Bakke <marius@gnu.org>
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 TakeV <takev@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -717,6 +718,26 @@ (define-public python-zipp
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")