Merge pull request #123855 from marsam/update-grpc

grpc: 1.37.1 -> 1.38.0
This commit is contained in:
Mario Rodas 2021-05-21 20:53:20 -05:00 committed by GitHub
commit 6bf9e13e82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -3,13 +3,13 @@
}:
stdenv.mkDerivation rec {
version = "1.37.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
version = "1.38.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
pname = "grpc";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
sha256 = "0mjlz2cax5v37g7xnrbf5px88bm7xzl4a5pds112yk096d7wmxm5";
sha256 = "0an903nh8lz3xlf79zsh2v55nrwnjzzavkjlrsl7j9aysgwmgn4r";
fetchSubmodules = true;
};
patches = [

View File

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
version = "1.37.1";
version = "1.38.0";
src = fetchPypi {
inherit pname version;
sha256 = "d775fb07cc6561174d6c86d11727a156c4ade969f7bf5edf623ffe2a428bee4e";
sha256 = "c609678cf6faf4b467259757f848de4fbc7baca3c1e3f7b0e55c701c50fd94ae";
};
outputs = [ "out" "dev" ];