mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add python-jsonrpc-server.
* gnu/packages/python-xyz.scm (python-jsonrpc-server): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2c880ef4e5
commit
346c87522e
1 changed files with 23 additions and 0 deletions
|
@ -2578,6 +2578,29 @@ (define-public python-toml
|
||||||
Language (TOML) configuration files.")
|
Language (TOML) configuration files.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-jsonrpc-server
|
||||||
|
(package
|
||||||
|
(name "python-jsonrpc-server")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "python-jsonrpc-server" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0m4ykpcdy52x37n1ikysp07j7p8ialcdvvvsrjp3545sn7iiid09"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-future" ,python-future)
|
||||||
|
("python-mock" ,python-mock)
|
||||||
|
("python-pytest" ,python-pytest)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/palantir/python-jsonrpc-server")
|
||||||
|
(synopsis "JSON RPC 2.0 server library")
|
||||||
|
(description
|
||||||
|
"This packages provides a JSON RPC 2.0 server library for Python.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-black
|
(define-public python-black
|
||||||
(package
|
(package
|
||||||
(name "python-black")
|
(name "python-black")
|
||||||
|
|
Loading…
Reference in a new issue