From fcc046ed8160085ca8042e98ce5475e25d59e2a0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 12 Dec 2024 19:55:11 +0100 Subject: [PATCH] python312Packages.aiohomeconnect: 0.6.4 -> 0.7.0 Diff: https://github.com/MartinHjelmare/aiohomeconnect/compare/refs/tags/v0.6.4...v0.7.0 Changelog: https://github.com/MartinHjelmare/aiohomeconnect/blob/refs/tags/v0.7.0/CHANGELOG.md --- pkgs/development/python-modules/aiohomeconnect/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiohomeconnect/default.nix b/pkgs/development/python-modules/aiohomeconnect/default.nix index c35bb8979fb6..a29dd9e8daf8 100644 --- a/pkgs/development/python-modules/aiohomeconnect/default.nix +++ b/pkgs/development/python-modules/aiohomeconnect/default.nix @@ -5,6 +5,7 @@ fastapi, fetchFromGitHub, httpx, + httpx-sse, mashumaro, poetry-core, pytest-asyncio, @@ -18,7 +19,7 @@ buildPythonPackage rec { pname = "aiohomeconnect"; - version = "0.6.4"; + version = "0.7.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -27,7 +28,7 @@ buildPythonPackage rec { owner = "MartinHjelmare"; repo = "aiohomeconnect"; rev = "refs/tags/v${version}"; - hash = "sha256-vy1pcLNRi5C0okdWMYWOHanEiN0Nl4WqZT1cC6UktCU="; + hash = "sha256-OgHlYa5n8BnXnaJg/Ns27cXaGKDUkSddDFvl03rwNXM="; }; pythonRelaxDeps = [ "httpx" ]; @@ -36,6 +37,7 @@ buildPythonPackage rec { dependencies = [ httpx + httpx-sse mashumaro ];