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

This commit is contained in:
Fabian Affolter
2026-03-31 17:56:33 +02:00
committed by GitHub
parent 378d871195
commit 2905adf011
@@ -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 ];
};
}
})