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 ];