python313Packages.aiomealie: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-01-17 15:27:22 +01:00
committed by Martin Weinelt
parent b10bef949e
commit 04e8c74b64
@@ -15,7 +15,7 @@
yarl,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiomealie";
version = "1.2.0";
pyproject = true;
@@ -23,7 +23,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "joostlek";
repo = "python-mealie";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-Q+8EZHZqbv5IEqhwCKhRPgr1Cfs/zVhLiwFgCZnNcW4=";
};
@@ -50,8 +50,8 @@ buildPythonPackage rec {
meta = {
description = "Module to interact with Mealie";
homepage = "https://github.com/joostlek/python-mealie";
changelog = "https://github.com/joostlek/python-mealie/releases/tag/${src.tag}";
changelog = "https://github.com/joostlek/python-mealie/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})