mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-flask-compress.
* gnu/packages/python-web.scm (python-flask-compress): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
8b38d180ec
commit
4181835a52
1 changed files with 21 additions and 0 deletions
|
@ -3658,6 +3658,27 @@ (define-public python-flask
|
|||
presume or force a developer to use a particular tool or library.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-flask-compress
|
||||
(package
|
||||
(name "python-flask-compress")
|
||||
(version "1.13")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Flask-Compress" version))
|
||||
(sha256
|
||||
(base32
|
||||
"178jzz6jxlxllcjqamzh5q7ahfh90m5cl1il9vmjs3xhz65z35pf"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-brotli python-flask))
|
||||
(native-inputs (list python-setuptools-scm))
|
||||
(home-page "https://github.com/colour-science/flask-compress")
|
||||
(synopsis "Compress responses in a Flask app")
|
||||
(description
|
||||
"This package lets you compress Flask application responses and static
|
||||
files with gzip, deflate or brotli. Flask-Compress both adds the various
|
||||
headers required for a compressed response and compresses the response data.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-flask-wtf
|
||||
(package
|
||||
(name "python-flask-wtf")
|
||||
|
|
Loading…
Reference in a new issue