guix-commits
[Top][All Lists]
Advanced

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

11/14: gnu: Add python-ajsonrpc.


From: guix-commits
Subject: 11/14: gnu: Add python-ajsonrpc.
Date: Mon, 18 Apr 2022 17:27:38 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit fc2d94a3f95b3a8f6e469fdd3cb92bdf110e1bd2
Author: Peter Polidoro <peter@polidoro.io>
AuthorDate: Mon Apr 18 23:17:11 2022 +0200

    gnu: Add python-ajsonrpc.
    
    * gnu/packages/python-web.scm (python-ajsonrpc): New variable.
---
 gnu/packages/python-web.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d77e310835..7e333916b6 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6444,3 +6444,25 @@ library for accessing the Twitter API.")
      "This package provides a Python ASGI web microframework with the same API
 as Flask.")
     (license license:expat)))
+
+(define-public python-ajsonrpc
+  (package
+    (name "python-ajsonrpc")
+    (version "1.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ajsonrpc" version))
+       (sha256
+        (base32 "17x1a4r4l428mhwn53abki9gzdzq3halyr4lj48fw3dzy0caq6vr"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-quart
+           python-sanic
+           python-tornado))
+    (home-page "https://github.com/pavlov99/ajsonrpc";)
+    (synopsis "Async JSON-RPC 2.0 protocol and server")
+    (description
+     "This package provides a Python JSON-RPC 2.0 protocol and server powered
+by asyncio.")
+    (license license:expat)))



reply via email to

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