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

python3Packages.google-cloud-iam-logging: migrate to finalAttrs

parent 378d8711
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "google-cloud-iam-logging";
  version = "1.7.0";
  pyproject = true;

  src = fetchPypi {
    pname = "google_cloud_iam_logging";
    inherit version;
    inherit (finalAttrs) version;
    hash = "sha256-p0PEXDzdq+DX88rW7mN9FBK7Nkhi01xubH+qeECr1d4=";
  };

@@ -51,8 +51,8 @@ buildPythonPackage rec {
  meta = {
    description = "IAM Service Logging client library";
    homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-iam-logging";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-iam-logging-v${version}/packages/google-cloud-iam-logging/CHANGELOG.md";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-iam-logging-v${finalAttrs.version}/packages/google-cloud-iam-logging/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})