guix-commits
[Top][All Lists]
Advanced

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

07/07: gnu: Add python-grpcio.


From: guix-commits
Subject: 07/07: gnu: Add python-grpcio.
Date: Tue, 15 Jan 2019 11:27:48 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 22e623aef08cc08c14073dca0193e9238ca88e9e
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Jan 15 15:49:04 2019 +0100

    gnu: Add python-grpcio.
    
    * gnu/packages/python-xyz.scm (python-grpcio): New variable.
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b9a4058..770f5ab 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14713,6 +14713,26 @@ of Python libraries for building Python applications.")
 source via the AST.")
     (license license:bsd-3)))
 
+(define-public python-grpcio
+  (package
+    (name "python-grpcio")
+    (version "1.17.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "grpcio" version))
+       (sha256
+        (base32
+         "0qb9y6j83nxa6d4kc60i8yfgdm7a8ms7b54kncjzf5y7nsxp8rzx"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-six" ,python-six)))
+    (home-page "https://grpc.io";)
+    (synopsis "HTTP/2-based RPC framework")
+    (description "This package provides a Python library for communicating
+with the HTTP/2-based RPC framework gRPC.")
+    (license license:asl2.0)))
+
 (define-public python-astunparse
   (package
     (name "python-astunparse")



reply via email to

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