summary refs log tree commit diff
path: root/pkgs/development/python-modules/grpcio-gcp/default.nix
blob: 656e147ac50aa87ea2976b59c0ca276094cd3e16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
, grpcio
}:

buildPythonPackage rec {
  pname = "grpcio-gcp";
  version = "0.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e292605effc7da39b7a8734c719afb12ec4b5362add3528d8afad3aa3aa9057c";
  };

  propagatedBuildInputs = [ grpcio ];

  meta = with lib; {
    description = "gRPC extensions for Google Cloud Platform";
    homepage = "https://grpc.io";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}