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:
parent
1a0c253b93
commit
f6b001be16
1 changed files with 21 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue