Unverified Commit 4dd9e7e1 authored by Yt's avatar Yt Committed by GitHub
Browse files

grpc: 1.75.0 -> 1.75.1 (#446619)

parents cd57a712 e24e2e50
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
# nixpkgs-update: no auto update
stdenv.mkDerivation rec {
  pname = "grpc";
  version = "1.75.0"; # N.B: if you change this, please update:
  version = "1.75.1"; # N.B: if you change this, please update:
  # pythonPackages.grpcio
  # pythonPackages.grpcio-channelz
  # pythonPackages.grpcio-health-checking
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
    owner = "grpc";
    repo = "grpc";
    tag = "v${version}";
    hash = "sha256-2SeL/O6FaAnrPXMHAPKCSzx3hlcKLuC5y+ljJ1gewkE=";
    hash = "sha256-SnKK52VLO4MM/ftfmzRV/LeLfOucdIyHMyWk6EKRfvM=";
    fetchSubmodules = true;
  };

+2 −2
Original line number Diff line number Diff line
@@ -12,13 +12,13 @@
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-channelz";
  version = "1.75.0";
  version = "1.75.1";
  pyproject = true;

  src = fetchPypi {
    pname = "grpcio_channelz";
    inherit version;
    hash = "sha256-1SGXOjQ4Bqg4S/h86uk88unxD4+rAsEr56Lj1dDk5o8=";
    hash = "sha256-4MqgbU3j62LT/cVOXJ3JADqj7iHpxQ9dNTiuqFTSdvI=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-health-checking";
  version = "1.75.0";
  version = "1.75.1";
  format = "setuptools";

  src = fetchPypi {
    pname = "grpcio_health_checking";
    inherit version;
    hash = "sha256-TeXrJwlihA9g4Ynr3b/P4jK17Pz2GN1TQRam9mhLQL8=";
    hash = "sha256-iI6huGrWXALIVHSG6VJjVi4UU2Pj1UAPUkT38sUyPmM=";
  };

  propagatedBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -12,13 +12,13 @@
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-reflection";
  version = "1.75.0";
  version = "1.75.1";
  pyproject = true;

  src = fetchPypi {
    pname = "grpcio_reflection";
    inherit version;
    hash = "sha256-YLuYZfVBGtWJQg6tzdfgwzjAqr7fXUzQc2PVv32pyXI=";
    hash = "sha256-K+PyC3uT5uaRoLx2H9fpmWqUC0yWxo9spPf7xHw/S2Q=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-status";
  version = "1.75.0";
  version = "1.75.1";
  format = "setuptools";

  disabled = pythonOlder "3.6";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "grpcio_status";
    inherit version;
    hash = "sha256-adW5G+G4uSbwhsHEg1GalowUZAdzoMzdbAQoJRXb7fc=";
    hash = "sha256-gWKvohgzoghckQicw5WtiA+sE3ih1gIz2XZkntcky/g=";
  };

  postPatch = ''
Loading