summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-05 09:32:11 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:35 +0100
commit599f7f71093c19e36faf9b25a3f1c6ddd2f599fd (patch)
tree41dc15f360878d7369a4b487b3a5822dfb68bb43 /gnu/packages
parentef4bd1c0f6331c3f27db47c0b724156668806a96 (diff)
gnu: python-flask-compress: Update to 1.24.
* gnu/packages/python-web.scm (python-flask-compress): Update to 1.24. [source]: Switch to git-fetch. [propagated-inputs]: Replace python-pyzstd by python-backports-zstd. Relates-to: guix/guix!10412 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm23
1 files changed, 13 insertions, 10 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7b09c8441ab..5f7ef747b20 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8329,13 +8329,16 @@ presume or force a developer to use a particular tool or library.")
8329(define-public python-flask-compress 8329(define-public python-flask-compress
8330 (package 8330 (package
8331 (name "python-flask-compress") 8331 (name "python-flask-compress")
8332 (version "1.18") 8332 (version "1.24")
8333 (source (origin 8333 (source
8334 (method url-fetch) 8334 (origin
8335 (uri (pypi-uri "flask_compress" version)) 8335 (method git-fetch)
8336 (sha256 8336 (uri (git-reference
8337 (base32 8337 (url "https://github.com/colour-science/flask-compress")
8338 "0fj1r0ixsjls7z3a2zzamxppjz4qcf8q4jcmn74gsk9kisyy3fpx")))) 8338 (commit (string-append "v" version))))
8339 (file-name (git-file-name name version))
8340 (sha256
8341 (base32 "0mid5c34r75vax1r7l2l5sjjhs6bl8rbsdmhc7kz39snq6xw3cr5"))))
8339 (build-system pyproject-build-system) 8342 (build-system pyproject-build-system)
8340 (native-inputs 8343 (native-inputs
8341 (list python-flask-caching 8344 (list python-flask-caching
@@ -8343,9 +8346,9 @@ presume or force a developer to use a particular tool or library.")
8343 python-setuptools 8346 python-setuptools
8344 python-setuptools-scm)) 8347 python-setuptools-scm))
8345 (propagated-inputs 8348 (propagated-inputs
8346 (list python-brotli 8349 (list python-backports-zstd
8347 python-flask 8350 python-brotli
8348 python-pyzstd)) 8351 python-flask))
8349 (home-page "https://github.com/colour-science/flask-compress") 8352 (home-page "https://github.com/colour-science/flask-compress")
8350 (synopsis "Compress responses in a Flask app") 8353 (synopsis "Compress responses in a Flask app")
8351 (description 8354 (description