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

python310Packages.google-cloud-bigquery-logging: refactor

parent 4e4af564
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -9,12 +9,13 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "google-cloud-bigquery-logging";
  version = "1.4.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -23,6 +24,10 @@ buildPythonPackage rec {
    hash = "sha256-4pl7cT8bLy0y3ntYt1qO027KF7yokHun5lGZHWnBkUw=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    google-api-core
    grpc-google-iam-v1
@@ -43,8 +48,8 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Bigquery logging client library";
    homepage = "https://github.com/googleapis/python-bigquery-logging";
    changelog = "https://github.com/googleapis/python-bigquery-logging/blob/v${version}/CHANGELOG.md";
    homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-bigquery-logging";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-bigquery-logging-v${version}/packages/google-cloud-bigquery-logging/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };