python313Packages.dirigera: 1.2.4 -> 1.2.5

Changelog: https://github.com/Leggin/dirigera/releases/tag/1.2.5
This commit is contained in:
Fabian Affolter
2025-12-28 11:58:39 +01:00
parent 32ba9b5278
commit 826cebfe48
@@ -4,7 +4,6 @@
fetchFromGitHub,
pydantic,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
websocket-client,
@@ -12,15 +11,13 @@
buildPythonPackage rec {
pname = "dirigera";
version = "1.2.4";
version = "1.2.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Leggin";
repo = "dirigera";
tag = "v${version}";
tag = version;
hash = "sha256-xFiAhlNbl20MPFNkl8J4vx+KgvINYS3P5EAQxc620/k=";
};
@@ -39,10 +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/v${version}";
changelog = "https://github.com/Leggin/dirigera/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "generate-token";
broken = lib.versionOlder pydantic.version "2";
};
}