linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / googleapis-common-protos / default.nix
blob1b54d64f1a2c2977c946358d9e89c1d64b5b515e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , grpc
5 , protobuf
6 }:
8 buildPythonPackage rec {
9   pname = "googleapis-common-protos";
10   version = "1.53.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-qI7okDqgqB9sPOwtXPYtPIqmfAZDmwSWtJBI+xhU6/Q=";
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; [ SuperSandro2000 ];
35   };