me
/
guix
Archived
1
0
Fork 0

gnu: Add python-quart.

* gnu/packages/python-web.scm (python-quart): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Peter Polidoro 2022-04-05 14:57:16 -04:00 committed by Ludovic Courtès
parent a76c879f14
commit 2aa5329023
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 29 additions and 0 deletions

View File

@ -50,6 +50,7 @@
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
;;;
;;; This file is part of GNU Guix.
;;;
@ -6415,3 +6416,31 @@ Full documentation may be found at
(description "This package provides @code{Tweepy}, an easy-to-use Python
library for accessing the Twitter API.")
(license license:expat)))
(define-public python-quart
(package
(name "python-quart")
(version "0.17.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Quart" version))
(sha256
(base32 "0h4n2dwzmqifya1razp9s7ppr4ra23ljac9v7sl039rzp3c17wic"))))
(build-system python-build-system)
(propagated-inputs
(list hypercorn
python-aiofiles
python-blinker
python-click
python-itsdangerous
python-jinja2
python-markupsafe
python-toml
python-werkzeug))
(home-page "https://gitlab.com/pgjones/quart/")
(synopsis "Python ASGI web microframework with the same API as Flask")
(description
"This package provides a Python ASGI web microframework with the same API
as Flask.")
(license license:expat)))