grpc: add comment about updating python3Packages.grpcio-status

- Add python packages as tests
main
Jonathan Ringer 2 years ago committed by Jonathan Ringer
parent 2b50067a1e
commit de9249f9da
  1. 11
      pkgs/development/libraries/grpc/default.nix

@ -13,11 +13,16 @@
, grpc
, abseil-cpp
, libnsl
# tests
, python3
}:
stdenv.mkDerivation rec {
pname = "grpc";
version = "1.43.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, please update:
# pythonPackages.grpcio-tools
# pythonPackages.grpcio-status
src = fetchFromGitHub {
owner = "grpc";
@ -86,6 +91,10 @@ stdenv.mkDerivation rec {
enableParallelBuilds = true;
passthru.tests = {
inherit (python3.pkgs) grpcio-status grpcio-tools;
};
meta = with lib; {
description = "The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)";
license = licenses.asl20;

Loading…
Cancel
Save