mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.grpcio-gcp: init at 0.2.2
This commit is contained in:
parent
50f0fc2862
commit
b7c7eea740
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/grpcio-gcp/default.nix
Normal file
24
pkgs/development/python-modules/grpcio-gcp/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, grpcio
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "grpcio-gcp";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e292605effc7da39b7a8734c719afb12ec4b5362add3528d8afad3aa3aa9057c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ grpcio ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "gRPC extensions for Google Cloud Platform";
|
||||
homepage = https://grpc.io;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -2516,6 +2516,8 @@ in {
|
|||
|
||||
grpcio-tools = callPackage ../development/python-modules/grpcio-tools { };
|
||||
|
||||
grpcio-gcp = callPackage ../development/python-modules/grpcio-gcp { };
|
||||
|
||||
grpc_google_iam_v1 = callPackage ../development/python-modules/grpc_google_iam_v1 { };
|
||||
|
||||
gspread = callPackage ../development/python-modules/gspread { };
|
||||
|
|
Loading…
Reference in a new issue