gnu: Add python-grpcio.

* gnu/packages/python-xyz.scm (python-grpcio): New variable.
master
Ricardo Wurmus 2019-01-15 15:49:04 +01:00 committed by Ricardo Wurmus
parent 2884aac071
commit 22e623aef0
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -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")