Unverified Commit 6e588a1e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 3ab19918 a007e5a3
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -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" ];