{ lib , buildPythonPackage , fetchFromGitHub , mock , noiseprotocol , protobuf , pytest-asyncio , pytestCheckHook , pythonOlder , zeroconf }: buildPythonPackage rec { pname = "aioesphomeapi"; version = "10.8.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "esphome"; repo = pname; rev = "v${version}"; sha256 = "1349b2as6r3m9sxlfss8plzafn31kf3rihwa58b4f7cmc4dhb2s8"; }; propagatedBuildInputs = [ noiseprotocol protobuf zeroconf ]; checkInputs = [ mock pytest-asyncio pytestCheckHook ]; pythonImportsCheck = [ "aioesphomeapi" ]; meta = with lib; { description = "Python Client for ESPHome native API"; homepage = "https://github.com/esphome/aioesphomeapi"; license = licenses.mit; maintainers = with maintainers; [ fab hexa ]; }; }