From 9ad15d684ece91b2bd869e2b568f47d42d4e4c48 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Mon, 6 Nov 2017 22:39:11 +1100 Subject: [PATCH 1/2] gnu: Add python-jsonrpclib-pelix. * gnu/packages/python.scm (python-jsonrpclib-pelix, python2-jsonrpclib-pelix): New variables. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e8a733919..8a6a8e278 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -16871,3 +16871,32 @@ executed more than a given number of times during a given period.") (define-public python2-ratelimiter (package-with-python2 python-ratelimiter)) + +(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 + "http://github.com/tcalmant/jsonrpclib/") + (synopsis + "This project is an implementation of the JSON-RPC v2.0 +specification (backwards-compatible) as a client library, for Python 2.7 and +Python 3.This version is a fork of jsonrpclib by Josh Marshall, usable with +Pelix remote services.") + (description + "This project is an implementation of the JSON-RPC v2.0 +specification (backwards-compatible) as a client library, for Python 2.7 and +Python 3.This version is a fork of jsonrpclib by Josh Marshall, usable with +Pelix remote services.") + (license #f))) + +(define-public python2-jsonrpclib-pelix + (package-with-python2 python-jsonrpclib-pelix)) -- 2.14.3