gnu: Add python-sanic-routing.

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

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Lars-Dominik Braun 2022-04-27 09:48:24 +02:00 committed by Maxim Cournoyer
parent 1a0c253b93
commit f6b001be16
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -6341,6 +6341,27 @@ (define-public python-hstspreload
as a Python package.")
(license license:bsd-3)))
(define-public python-sanic-routing
(package
(name "python-sanic-routing")
(version "0.7.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sanic-routing" version))
(sha256
(base32 "0k9paln0jd4sc2bklp977c82n29pk12wiv726siplkh57y5yi70k"))))
(build-system python-build-system)
(arguments
;; PyPi sources does not contain tests, recursive dependency on
;; python-sanic.
(list #:tests? #f))
(home-page "https://github.com/sanic-org/sanic-routing/")
(synopsis "Routing component for Sanic")
(description "Internal package for @code{python-sanic}, which provides
the @code{BasicRouter}.")
(license license:expat)))
(define-public python-sanic
(package
(name "python-sanic")