[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: Add grpc-for-python-grpcio.
From: |
guix-commits |
Subject: |
02/07: gnu: Add grpc-for-python-grpcio. |
Date: |
Fri, 21 Apr 2023 07:11:33 -0400 (EDT) |
rekado pushed a commit to branch core-updates
in repository guix.
commit d0ca8f41c14d4e6d8fd7c8d49deaf69c194d3e8f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Apr 20 22:40:43 2023 +0200
gnu: Add grpc-for-python-grpcio.
* gnu/packages/rpc.scm (grpc-for-python-grpcio): New variable.
---
gnu/packages/rpc.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/rpc.scm b/gnu/packages/rpc.scm
index f22b21cbb6..f30876dab4 100644
--- a/gnu/packages/rpc.scm
+++ b/gnu/packages/rpc.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2019, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
@@ -123,6 +123,24 @@ mile of distributed computing to connect devices, mobile
applications and
browsers to backend services.")
(license license:asl2.0)))
+(define-public grpc-for-python-grpcio
+ (package
+ (inherit grpc)
+ (name "grpc")
+ (version "1.47.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/grpc/grpc")
+ (commit (string-append "v" version))
+ (recursive? #true)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1nl2d92f3576m69991d7gwyk1giavm04fagr612yjh90rni01ikw"))))
+ (inputs
+ (list abseil-cpp-20211102.0 c-ares/cmake openssl re2 zlib))))
+
;; Some packages require this older version.
(define-public grpc-1.16.1
(package
- branch core-updates updated (fe4978d5b5 -> 4065d9dfd5), guix-commits, 2023/04/21
- 04/07: gnu: grpc-1.16.1: Correct input modifications., guix-commits, 2023/04/21
- 06/07: gnu: python-protobuf-3.6: Patch for Python 3.10., guix-commits, 2023/04/21
- 01/07: gnu: Add abseil-cpp-20211102.0., guix-commits, 2023/04/21
- 02/07: gnu: Add grpc-for-python-grpcio.,
guix-commits <=
- 03/07: gnu: python-grpcio: Rebuild Cythonized source files., guix-commits, 2023/04/21
- 05/07: gnu: python-setuptools-for-tensorflow: Patch for Python 3.10 compatibility., guix-commits, 2023/04/21
- 07/07: gnu: tensorflow: Adjust for Python 3.10 compatibility., guix-commits, 2023/04/21