Merge pull request #139912 from marsam/update-grpc

grpc: 1.40.0 -> 1.41.0
This commit is contained in:
Mario Rodas 2021-09-29 11:16:44 -05:00 committed by GitHub
commit 4bad1c1d11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "grpc";
version = "1.40.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
version = "1.41.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
sha256 = "08l2dyf3g3zrffy60ycid6jngvhfaghg792yrkfjcpcif5dqfd9f";
sha256 = "1mcgnzwc2mcdpcfhc1b37vff0biwyd3v0a2ack58wgf4336pzlsb";
fetchSubmodules = true;
};

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
version = "1.40.0";
version = "1.41.0";
src = fetchPypi {
inherit pname version;
sha256 = "d440f2bc089ff628618c536904d5bc39d0b44f7afdda4c4c1ecd15fcf385bfba";
sha256 = "3891b1df82369acbc8451d4952cd20755f49a82398dce62437511ad17b47290e";
};
outputs = [ "out" "dev" ];