gnu: Add python-jsonrpclib-pelix.

* gnu/packages/python.scm (python-jsonrpclib-pelix, python2-jsonrpclib-pelix):
New variables.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
master
Carlo Zancanaro 2017-11-06 22:39:11 +11:00 committed by Ludovic Courtès
parent 8e57e416c0
commit ea0421bbf6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 24 additions and 0 deletions

View File

@ -16897,3 +16897,27 @@ embeddable JavaScript engine.")
(define-public python2-dukpy
(package-with-python2 python-dukpy))
(define-public python-jsonrpclib-pelix
(package
(name "python-jsonrpclib-pelix")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonrpclib-pelix" version))
(sha256
(base32
"1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl"))))
(build-system python-build-system)
(home-page "https://github.com/tcalmant/jsonrpclib/")
(synopsis "JSON-RPC 2.0 client library for Python")
(description
"This library implements the JSON-RPC v2.0
specification (backwards-compatible) as a client library for Python. This
version is a fork of jsonrpclib by Josh Marshall, usable with Pelix remote
services.")
(license license:asl2.0)))
(define-public python2-jsonrpclib-pelix
(package-with-python2 python-jsonrpclib-pelix))