gnu: python-hypercorn: Remove "python-" prefix from name.

Hypercorn is mainly a CLI application but also supports a module interface.

* gnu/packages/python-web.scm (python-hypercorn): New deprecated variable.
(hypercorn): Renamed from the respective above.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Vinicius Monego 2021-10-30 17:30:46 +00:00 committed by Efraim Flashner
parent b6e1ba6104
commit 782ec05926
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1635,9 +1635,9 @@ (define-public python-wsproto
RFC6455, regardless of your programming paradigm.")
(license license:expat)))
(define-public python-hypercorn
(define-public hypercorn
(package
(name "python-hypercorn")
(name "hypercorn")
(version "0.10.2")
(source
(origin
@ -1653,6 +1653,7 @@ (define-public python-hypercorn
(lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-vv"))))))
;; Propagate because Hypercorn also exposes functionality over a module.
(propagated-inputs
`(("python-h11" ,python-h11)
("python-h2" ,python-h2)
@ -1677,6 +1678,9 @@ (define-public python-hypercorn
utilise asyncio, uvloop, or trio worker types.")
(license license:expat)))
(define-public python-hypercorn
(deprecated-package "python-hypercorn" hypercorn))
(define-public python-querystring-parser
(package
(name "python-querystring-parser")