Merge pull request #151258 from marsam/update-grpc

grpc: 1.42.0 -> 1.43.0
This commit is contained in:
Mario Rodas 2021-12-18 23:36:55 -05:00 committed by GitHub
commit 29a6393424
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.42.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
version = "1.43.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 = "sha256-9/ywbnvd8hqeblFe+X9SM6PkRPB/yqE8Iw9TNmLMSOE=";
sha256 = "sha256-NPyCQsrmD/gBs4UHPGbBACmGRTNQDj6WfnfLNdWulK4=";
fetchSubmodules = true;
};

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
version = "1.42.0";
version = "1.43.0";
src = fetchPypi {
inherit pname version;
sha256 = "d0a0daa82eb2c2fb8e12b82a458d1b7c5516fe1135551da92b1a02e2cba93422";
sha256 = "f42f1d713096808b1b0472dd2a3749b712d13f0092dab9442d9c096446e860b2";
};
outputs = [ "out" "dev" ];