{ lib, buildPythonPackage, fetchFromGitHub, setuptools, aiohttp, google-auth, google-cloud-firestore, pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "aioaquarite"; version = "0.12.2"; pyproject = true; src = fetchFromGitHub { owner = "fdebrus"; repo = "aioaquarite"; tag = "v${finalAttrs.version}"; hash = "sha256-PtBK7LhNkoWv8qpSR/tiMCh78OIP5/Me/R4w6X1Fijg="; }; build-system = [ setuptools ]; dependencies = [ aiohttp google-auth google-cloud-firestore ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "aioaquarite" ]; meta = { description = "Async Python client for the Hayward Aquarite pool API"; homepage = "https://github.com/fdebrus/aioaquarite"; changelog = "https://github.com/fdebrus/aioaquarite/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = [ lib.maintainers.jamiemagee ]; }; })