diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-15 15:49:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-15 17:27:34 +0100 |
commit | 22e623aef08cc08c14073dca0193e9238ca88e9e (patch) | |
tree | c8bf8b266aeaec599d9ed9bba73d3935cf850019 | |
parent | 2884aac071a19233713bab274a6908ae1d9e834e (diff) | |
download | patches-22e623aef08cc08c14073dca0193e9238ca88e9e.tar patches-22e623aef08cc08c14073dca0193e9238ca88e9e.tar.gz |
gnu: Add python-grpcio.
* gnu/packages/python-xyz.scm (python-grpcio): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b9a40585bb..770f5abc63 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") |