Unverified Commit cb8162b2 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

grpc: add coments about updating related python packages for compatibility (#349050)

parents 3b2ebbb3 0d7cb827
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -19,11 +19,19 @@
, arrow-cpp
}:

# This package should be updated together with all related python grpc packages
# to ensure compatibility.
# nixpkgs-update: no auto update
stdenv.mkDerivation rec {
  pname = "grpc";
  version = "1.66.1"; # N.B: if you change this, please update:
    # pythonPackages.grpcio-tools
    # pythonPackages.grpcio
    # pythonPackages.grpcio-channelz
    # pythonPackages.grpcio-health-checking
    # pythonPackages.grpcio-reflection
    # pythonPackages.grpcio-status
    # pythonPackages.grpcio-testing
    # pythonPackages.grpcio-tools

  src = fetchFromGitHub {
    owner = "grpc";
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,9 @@
  protobuf,
}:

# This package should be updated together with the main grpc package and other
# related python grpc packages.
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-channelz";
  version = "1.66.2";
+3 −0
Original line number Diff line number Diff line
@@ -6,6 +6,9 @@
  protobuf,
}:

# This package should be updated together with the main grpc package and other
# related python grpc packages.
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-health-checking";
  version = "1.66.2";
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,9 @@
  protobuf,
}:

# This package should be updated together with the main grpc package and other
# related python grpc packages.
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-reflection";
  version = "1.66.2";
+3 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@
  pythonOlder,
}:

# This package should be updated together with the main grpc package and other
# related python grpc packages.
# nixpkgs-update: no auto update
buildPythonPackage rec {
  pname = "grpcio-status";
  version = "1.66.1";
Loading