1{ lib
2, buildPythonPackage
3, fetchPypi
4, grpc
5, protobuf
6}:
7
8buildPythonPackage rec {
9 pname = "googleapis-common-protos";
10 version = "1.60.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-5z67QECY20BbqV0eGuCqkcPhWnHaAxou62suI+e8Nwg=";
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; [ ];
35 };
36}