b0920c5e93
Diff: https://github.com/Leggin/dirigera/compare/refs/tags/v1.1.5...v1.1.6 Changelog: https://github.com/Leggin/dirigera/releases/tag/v1.1.6
47 lines
982 B
Nix
47 lines
982 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pydantic,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
setuptools,
|
|
websocket-client,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dirigera";
|
|
version = "1.1.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Leggin";
|
|
repo = "dirigera";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-OXq8eJyZQBsJEK81GxstfMHqDShlZyOWSXLwP9Zfpqw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
pydantic
|
|
requests
|
|
websocket-client
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "dirigera" ];
|
|
|
|
meta = with lib; {
|
|
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}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "generate-token";
|
|
};
|
|
}
|