mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add python-ajsonrpc.
* gnu/packages/python-web.scm (python-ajsonrpc): New variable.
This commit is contained in:
parent
2aa5329023
commit
fc2d94a3f9
1 changed files with 22 additions and 0 deletions
|
@ -6444,3 +6444,25 @@ (define-public python-quart
|
|||
"This package provides a Python ASGI web microframework with the same API
|
||||
as Flask.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-ajsonrpc
|
||||
(package
|
||||
(name "python-ajsonrpc")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "ajsonrpc" version))
|
||||
(sha256
|
||||
(base32 "17x1a4r4l428mhwn53abki9gzdzq3halyr4lj48fw3dzy0caq6vr"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
(list python-quart
|
||||
python-sanic
|
||||
python-tornado))
|
||||
(home-page "https://github.com/pavlov99/ajsonrpc")
|
||||
(synopsis "Async JSON-RPC 2.0 protocol and server")
|
||||
(description
|
||||
"This package provides a Python JSON-RPC 2.0 protocol and server powered
|
||||
by asyncio.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue