From 2f240f741092761ba0c94a49b30431407cf6d2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 29 Mar 2026 22:20:18 -0700 Subject: [PATCH] python3Packages.aiohasupervisor: 0.3.3 -> 0.4.3 Diff: https://github.com/home-assistant-libs/python-supervisor-client/compare/0.3.3...0.4.3 Changelog: https://github.com/home-assistant-libs/python-supervisor-client/releases/tag/0.4.3 --- .../python-modules/aiohasupervisor/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aiohasupervisor/default.nix b/pkgs/development/python-modules/aiohasupervisor/default.nix index 615859401ebe..a4a3aaf8d4c1 100644 --- a/pkgs/development/python-modules/aiohasupervisor/default.nix +++ b/pkgs/development/python-modules/aiohasupervisor/default.nix @@ -10,29 +10,26 @@ pytest-cov-stub, pytest-timeout, pytestCheckHook, - pythonOlder, setuptools, yarl, }: buildPythonPackage rec { pname = "aiohasupervisor"; - version = "0.3.3"; + version = "0.4.3"; pyproject = true; - disabled = pythonOlder "3.12"; - src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "python-supervisor-client"; tag = version; - hash = "sha256-v6w+g1M3VR/an3a5MfWf8fDCHNzRC4+05L7GW45PzWU="; + hash = "sha256-h22y62f+pdoHYKqPeKNGFkVS7/IMWbxaAoDLomwAB40="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail 'version = "0.0.0"' 'version = "${version}"' \ - --replace-fail "setuptools>=68.0,<80.10" "setuptools" + --replace-fail "setuptools>=68.0,<82.1" "setuptools" ''; build-system = [ setuptools ];