python313Packages.dirigera: 1.2.5 -> 1.2.6 (#483959)

This commit is contained in:
Fabian Affolter
2026-01-26 13:36:16 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
websocket-client,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "dirigera";
version = "1.2.5";
version = "1.2.6";
pyproject = true;
src = fetchFromGitHub {
owner = "Leggin";
repo = "dirigera";
tag = version;
hash = "sha256-xFiAhlNbl20MPFNkl8J4vx+KgvINYS3P5EAQxc620/k=";
tag = "v${finalAttrs.version}";
hash = "sha256-5pfzmaIkIEtxDtkhG1lOLSTjWahEDgQKLJKbAG5rBjE=";
};
build-system = [ setuptools ];
@@ -36,9 +36,9 @@ buildPythonPackage rec {
meta = {
description = "Module for controlling the IKEA Dirigera Smart Home Hub";
homepage = "https://github.com/Leggin/dirigera";
changelog = "https://github.com/Leggin/dirigera/releases/tag/${src.tag}";
changelog = "https://github.com/Leggin/dirigera/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "generate-token";
};
}
})