Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / googleapis-common-protos / default.nix
blob64dc4d2c718225b65c6027da3f8619264805b0bc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , grpc
5 , protobuf
6 }:
8 buildPythonPackage rec {
9   pname = "googleapis-common-protos";
10   version = "1.60.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-5z67QECY20BbqV0eGuCqkcPhWnHaAxou62suI+e8Nwg=";
15   };
17   propagatedBuildInputs = [ grpc protobuf ];
19   # does not contain tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "google.api"
24     "google.logging"
25     "google.longrunning"
26     "google.rpc"
27     "google.type"
28   ];
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   };