1{ lib, buildPythonPackage, fetchPypi, googleapis-common-protos, protobuf }: 2 3buildPythonPackage rec { 4 pname = "google-cloud-audit-log"; 5 version = "0.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d0852f525ad65705f9fbff6288be4493e1449a7906fb5e01bd71c8d1e424d1fc"; 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}