python313Packages.lxmf: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-01-09 22:32:55 +01:00
committed by GitHub
parent 8a1a0e2f36
commit b135f8ebf6
@@ -6,7 +6,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "lxmf";
version = "0.9.4";
pyproject = true;
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "markqvist";
repo = "lxmf";
tag = version;
tag = finalAttrs.version;
hash = "sha256-WeEGwdbW2hmN7sdMl8tR5pmaXGqRb6y5Zb536ty3eiY=";
};
@@ -30,11 +30,11 @@ buildPythonPackage rec {
meta = {
description = "Lightweight Extensible Message Format for Reticulum";
homepage = "https://github.com/markqvist/lxmf";
changelog = "https://github.com/markqvist/LXMF/releases/tag/${src.tag}";
changelog = "https://github.com/markqvist/LXMF/releases/tag/${finalAttrs.src.tag}";
# Reticulum License
# https://github.com/markqvist/LXMF/blob/master/LICENSE
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "lxmd";
};
}
})