{ lib , aiohttp , asynctest , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , zigpy }: buildPythonPackage rec { pname = "zha-quirks"; version = "0.0.82"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "zigpy"; repo = "zha-device-handlers"; rev = "refs/tags/${version}"; hash = "sha256-2pm0fLPw/ROjYwvaL1wyZ39ZAbAjwc1TPsbYsO0+vcI="; }; propagatedBuildInputs = [ aiohttp zigpy ]; checkInputs = [ asynctest pytestCheckHook ]; pythonImportsCheck = [ "zhaquirks" ]; meta = with lib; { description = "ZHA Device Handlers are custom quirks implementations for Zigpy"; homepage = "https://github.com/dmulcahey/zha-device-handlers"; license = licenses.asl20; maintainers = with maintainers; [ ]; platforms = platforms.linux; }; }