python312Packages.dirigera: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 08:38:20 +01:00 committed by GitHub
parent 432205b461
commit 14c3a770df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,11 +23,11 @@ buildPythonPackage rec {
hash = "sha256-e8kbMP5ih7MBozFbylLEBR9DrS894X4xZh62OLLSgFw="; hash = "sha256-e8kbMP5ih7MBozFbylLEBR9DrS894X4xZh62OLLSgFw=";
}; };
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
pydantic pydantic
requests requests
websocket-client websocket-client
@ -43,10 +43,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module for controlling the IKEA Dirigera Smart Home Hub"; description = "Module for controlling the IKEA Dirigera Smart Home Hub";
mainProgram = "generate-token";
homepage = "https://github.com/Leggin/dirigera"; homepage = "https://github.com/Leggin/dirigera";
changelog = "https://github.com/Leggin/dirigera/releases/tag/v${version}"; changelog = "https://github.com/Leggin/dirigera/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "generate-token";
}; };
} }