forked from mirrors/nixpkgs
26 lines
721 B
Nix
26 lines
721 B
Nix
{ lib, buildPythonPackage, fetchPypi, googleapis-common-protos, protobuf }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-audit-log";
|
|
version = "0.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5bf5a53c641b13828154ab21fb209669be69d71cd462f5d6456bf87722fc0eeb";
|
|
};
|
|
|
|
propagatedBuildInputs = [ googleapis-common-protos protobuf ];
|
|
|
|
# tests are a bit wonky to setup and are not very deep either
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "google.cloud.audit" ];
|
|
|
|
meta = with lib; {
|
|
description = "Google Cloud Audit Protos";
|
|
homepage = "https://github.com/googleapis/python-audit-log";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|