18 buildPythonPackage rec {
19 pname = "aiohasupervisor";
23 disabled = pythonOlder "3.12";
26 inherit pname version;
27 hash = "sha256-oSQhZf0lV5bJYdrfu4j8Hw1F+EQfivEPQomatHixy9k=";
31 substituteInPlace pyproject.toml \
32 --replace-fail "setuptools~=68.0.0" "setuptools>=68.0.0" \
33 --replace-fail "wheel~=0.40.0" "wheel>=0.40.0"
36 build-system = [ setuptools ];
53 # Import issue, check with next release
56 pythonImportsCheck = [ "aiohasupervisor" ];
59 description = "Client for Home Assistant Supervisor";
60 homepage = "https://github.com/home-assistant-libs/python-supervisor-client";
61 license = lib.licenses.asl20;
62 maintainers = with lib.maintainers; [ fab ];