guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 4aa7f4c10e0d0e7f6e1a59c62cb290608db3ff46
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 31 22:02:54 2025 +0100
gnu: python-flask-compress: Update to 1.18.
* gnu/packages/python-web.scm (python-flask-compress): Update to 1.18.
[propagated-inputs]: Add python-pyzstd.
[native-inputs]: Remove python-wheel; add python-flask-caching and
python-pytest.
Change-Id: I2d168d66b9331d86a850454c43be83b7d062e7b7
---
gnu/packages/python-web.scm | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8ce61baf28..3ff0fca527 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6086,16 +6086,23 @@ presume or force a developer to use a particular tool
or library.")
(define-public python-flask-compress
(package
(name "python-flask-compress")
- (version "1.13")
+ (version "1.18")
(source (origin
(method url-fetch)
- (uri (pypi-uri "Flask-Compress" version))
+ (uri (pypi-uri "flask_compress" version))
(sha256
(base32
- "178jzz6jxlxllcjqamzh5q7ahfh90m5cl1il9vmjs3xhz65z35pf"))))
+ "0fj1r0ixsjls7z3a2zzamxppjz4qcf8q4jcmn74gsk9kisyy3fpx"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-brotli python-flask))
- (native-inputs (list python-setuptools-scm python-setuptools python-wheel))
+ (native-inputs
+ (list python-flask-caching
+ python-pytest
+ python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-brotli
+ python-flask
+ python-pyzstd))
(home-page "https://github.com/colour-science/flask-compress")
(synopsis "Compress responses in a Flask app")
(description