567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
499 B
Nix
27 lines
499 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
grpcio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "grpcio-gcp";
|
|
version = "0.2.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e292605effc7da39b7a8734c719afb12ec4b5362add3528d8afad3aa3aa9057c";
|
|
};
|
|
|
|
propagatedBuildInputs = [ grpcio ];
|
|
|
|
meta = {
|
|
description = "gRPC extensions for Google Cloud Platform";
|
|
homepage = "https://grpc.io";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|