0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

Merge pull request #127969 from marsam/update-grpc

This commit is contained in:
Sandro 2021-06-24 12:48:46 +02:00 committed by GitHub
commit 1ad9f39280
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.38.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
version = "1.38.1"; # 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 = "0an903nh8lz3xlf79zsh2v55nrwnjzzavkjlrsl7j9aysgwmgn4r";
sha256 = "0hjp946x5695srmc6bg2m7iih81jdmhpxn4bjcl80f09v4qsb0nl";
fetchSubmodules = true;
};
patches = [

View file

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