guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add python-aiorpcx.


From: guix-commits
Subject: 02/03: gnu: Add python-aiorpcx.
Date: Sat, 9 Feb 2019 17:27:35 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 93d3360ab01d7115eba8972990519cdd1d5e21b1
Author: Vagrant Cascadian <address@hidden>
Date:   Thu Jan 17 00:18:41 2019 +0000

    gnu: Add python-aiorpcx.
    
    * gnu/packages/python-web.scm (python-aiorpcx): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python-web.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 61f3a19..afec5eb 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -27,6 +27,7 @@
 ;;; Copyright © 2018 Nicolas Goaziou <address@hidden>
 ;;; Copyright © 2018 Mathieu Othacehe <address@hidden>
 ;;; Copyright © 2018 Maxim Cournoyer <address@hidden>
+;;; Copyright © 2019 Vagrant Cascadian <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -145,6 +146,31 @@ asynchronous DNS resolutions with a synchronous looking 
interface by
 using @url{https://github.com/saghul/pycares,pycares}.";)
     (license license:expat)))
 
+(define-public python-aiorpcx
+  (package
+    (name "python-aiorpcx")
+    (version "0.10.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "aiorpcX" version))
+       (sha256
+        (base32
+         "1p88k15jh0d2a18pnnbfcamsqi2bxvmmhpizmdlxfdxf8vy5ggyj"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-attrs" ,python-attrs)))
+    (home-page "https://github.com/kyuupichan/aiorpcX";)
+    (synopsis "Generic asyncio RPC implementation")
+    (description
+     "aiorpcX is a generic asyncio library implementation of RPC suitable for
+an application that is a client, server or both.
+
+The package includes a module with full coverage of JSON RPC versions 1.0 and
+2.0, JSON RPC protocol auto-detection, and arbitrary message framing.  It also
+comes with a SOCKS proxy client.")
+    (license (list license:expat license:bsd-2))))
+
 (define-public python-falcon
   (package
     (name "python-falcon")



reply via email to

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