blob: be5dba4ae5da75d091f6fb0e6f4180887267bf83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
googleapis-common-protos,
protobuf,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-audit-log";
version = "0.4.0";
pyproject = true;
src = fetchPypi {
pname = "google_cloud_audit_log";
inherit version;
hash = "sha256-hGfU3MqfPmFgUgwk1xWS5J6HSDjxdHYicuwQ55ULb+s=";
};
build-system = [ setuptools ];
dependencies = [
googleapis-common-protos
protobuf
];
# Tests are a bit wonky to setup and are not very deep either
doCheck = false;
pythonImportsCheck = [ "google.cloud.audit" ];
meta = {
description = "Google Cloud Audit Protos";
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-audit-log";
changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-audit-log-v${version}/packages/google-cloud-audit-log/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|