1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

python312Packages.google-cloud-audit-log: 0.2.5 -> 0.3.0 (#339473)

This commit is contained in:
Fabian Affolter 2024-09-04 13:02:46 +02:00 committed by GitHub
commit 6e588a1ea6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,26 +5,30 @@
googleapis-common-protos,
protobuf,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-audit-log";
version = "0.2.5";
format = "setuptools";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-huL6ujODrcj9BKW9f9T5YLPkrtqn7ZUPL4kc4WkC62s=";
pname = "google_cloud_audit_log";
inherit version;
hash = "sha256-kBQoslcCDYwdETPg+gBBZKVV5aOVx8o827hIZRPfOmU=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
googleapis-common-protos
protobuf
];
# tests are a bit wonky to setup and are not very deep either
# Tests are a bit wonky to setup and are not very deep either
doCheck = false;
pythonImportsCheck = [ "google.cloud.audit" ];