python312Packages.hass-nabucasa: refactor

This commit is contained in:
Fabian Affolter 2024-04-04 22:05:27 +02:00
parent b0d47a8656
commit eb0b1a9e15

View File

@ -34,16 +34,19 @@ buildPythonPackage rec {
hash = "sha256-8KxnS6LTK077/hr81JOiOj8GaNWBXO8XlvpYBm/sZbI="; hash = "sha256-8KxnS6LTK077/hr81JOiOj8GaNWBXO8XlvpYBm/sZbI=";
}; };
nativeBuildInputs = [
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [ pythonRelaxDeps = [
"acme" "acme"
]; ];
propagatedBuildInputs = [ nativeBuildInputs = [
pythonRelaxDepsHook
];
build-system = [
setuptools
];
dependencies = [
acme acme
aiohttp aiohttp
atomicwrites-homeassistant atomicwrites-homeassistant
@ -68,8 +71,8 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/NabuCasa/hass-nabucasa";
description = "Python module for the Home Assistant cloud integration"; description = "Python module for the Home Assistant cloud integration";
homepage = "https://github.com/NabuCasa/hass-nabucasa";
changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${version}"; changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ Scriptkiddi ]; maintainers = with maintainers; [ Scriptkiddi ];