From 415058c95d1568c2677a424084d78d0f12e0eca8 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 17 Jan 2019 00:18:41 +0000 Subject: [PATCH 2/3] gnu: Add python-aiorpcx. * gnu/packages/python-web.scm (python-aiorpcx): New variable. --- gnu/packages/python-web.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 3141600c6..3caba6637 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -146,6 +146,30 @@ 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 async RPC implementation, including JSON-RPC") + (description + "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") -- 2.20.1