guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/11: gnu: Add python-jsonrpclib-pelix.


From: Ludovic Courtès
Subject: 05/11: gnu: Add python-jsonrpclib-pelix.
Date: Mon, 6 Nov 2017 18:12:20 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit ea0421bbf6b4f0fcd2418d0a96e53eb4339574b5
Author: Carlo Zancanaro <address@hidden>
Date:   Mon Nov 6 22:39:11 2017 +1100

    gnu: Add python-jsonrpclib-pelix.
    
    * gnu/packages/python.scm (python-jsonrpclib-pelix, 
python2-jsonrpclib-pelix):
    New variables.
    
    Co-authored-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e506f6d..5b11a63 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]