1{ lib, buildPythonPackage, fetchPypi, googleapis-common-protos, protobuf }:
2
3buildPythonPackage rec {
4 pname = "google-cloud-audit-log";
5 version = "0.2.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-qr5VQ2ceT4qcekwOPqmoe6K6K5b5/61vqgIgmQDh8wg=";
10 };
11
12 propagatedBuildInputs = [ googleapis-common-protos protobuf ];
13
14 # tests are a bit wonky to setup and are not very deep either
15 doCheck = false;
16
17 pythonImportsCheck = [ "google.cloud.audit" ];
18
19 meta = with lib; {
20 description = "Google Cloud Audit Protos";
21 homepage = "https://github.com/googleapis/python-audit-log";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ SuperSandro2000 ];
24 };
25}