python314Packages.pyporscheconnectapi: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-02-18 10:59:44 +01:00
committed by GitHub
parent 175cb4acbe
commit cb74adafdb
@@ -8,7 +8,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyporscheconnectapi";
version = "0.2.6";
pyproject = true;
@@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "CJNE";
repo = "pyporscheconnectapi";
tag = version;
tag = finalAttrs.version;
hash = "sha256-aiNCT1IYSXdlJfIoQsBnVn9FGHifkI8e35VCQGGAAZ0=";
};
@@ -41,8 +41,8 @@ buildPythonPackage rec {
meta = {
description = "Python client library for Porsche Connect API";
homepage = "https://github.com/CJNE/pyporscheconnectapi";
changelog = "https://github.com/CJNE/pyporscheconnectapi/releases/tag/${src.tag}";
changelog = "https://github.com/CJNE/pyporscheconnectapi/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})