lol

Merge pull request #109513 from marsam/update-grpc

grpc: 1.34.0 -> 1.34.1

authored by

Mario Rodas and committed by
GitHub
e1545d42 145cf67b

+7 -5
+2 -2
pkgs/development/libraries/grpc/default.nix
··· 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "1.34.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 6 + version = "1.34.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 7 pname = "grpc"; 8 8 src = fetchFromGitHub { 9 9 owner = "grpc"; 10 10 repo = "grpc"; 11 11 rev = "v${version}"; 12 - sha256 = "0kipk26kg2x06mrkhb74k8vk5cn4mr89kw1f9mb04n616wkxjyxy"; 12 + sha256 = "0p6si9i0gg885ag2x87a7jyzhgd5lhx2bh2vjj2ra1jn6y3vg6qk"; 13 13 fetchSubmodules = true; 14 14 }; 15 15 patches = [
+5 -3
pkgs/development/python-modules/grpcio-tools/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }: 1 + { lib, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "grpcio-tools"; 5 - version = "1.34.0"; 5 + version = "1.34.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "db5a6f0130256d534cbe35eab37d37a448d96f4fd736e5051c6be1aee49cea1d"; 9 + sha256 = "b411f36748f4ead33411544d785e37825598bbb8abbe79eca422e395be5a3d08"; 10 10 }; 11 11 12 12 outputs = [ "out" "dev" ]; ··· 17 17 18 18 # no tests in the package 19 19 doCheck = false; 20 + 21 + pythonImportsCheck = [ "grpc_tools" ]; 20 22 21 23 meta = with lib; { 22 24 description = "Protobuf code generator for gRPC";