1{ lib
2, buildPythonPackage
3, fetchPypi
4, grpc
5, protobuf
6}:
7
8buildPythonPackage rec {
9 pname = "googleapis-common-protos";
10 version = "1.53.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a88ee8903aa0a81f6c3cec2d5cf62d3c8aa67c06439b0496b49048fb1854ebf4";
15 };
16
17 propagatedBuildInputs = [ grpc protobuf ];
18
19 # does not contain tests
20 doCheck = false;
21
22 pythonImportsCheck = [
23 "google.api"
24 "google.logging"
25 "google.longrunning"
26 "google.rpc"
27 "google.type"
28 ];
29
30 meta = with lib; {
31 description = "Common protobufs used in Google APIs";
32 homepage = "https://github.com/googleapis/python-api-common-protos";
33 license = licenses.asl20;
34 maintainers = with maintainers; [ SuperSandro2000 ];
35 };
36}