mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add python-flask-htmlmin.
* gnu/packages/python.scm (python-flask-htmlmin, python2-flask-htmlmin): New variables. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
35db2d3cb7
commit
78c5566365
1 changed files with 24 additions and 0 deletions
|
@ -13622,3 +13622,27 @@ (define-public python-htmlmin
|
|||
|
||||
(define-public python2-htmlmin
|
||||
(package-with-python2 python-htmlmin))
|
||||
|
||||
(define-public python-flask-htmlmin
|
||||
(package
|
||||
(name "python-flask-htmlmin")
|
||||
(version "1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Flask-HTMLmin" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1n6zlq72kakkw0z2jpq6nh74lfsmxybm4g053pwhc14fbr809348"))))
|
||||
(propagated-inputs
|
||||
`(("python-flask" ,python-flask)
|
||||
("python-htmlmin" ,python-htmlmin)))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/hamidfzm/Flask-HTMLmin")
|
||||
(synopsis "HTML response minifier for Flask")
|
||||
(description
|
||||
"Minify @code{text/html} MIME type responses when using @code{Flask}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python2-flask-htmlmin
|
||||
(package-with-python2 python-flask-htmlmin))
|
||||
|
|
Loading…
Reference in a new issue