{ lib, aenum, aiohttp-retry, aiohttp, buildPythonPackage, fetchFromGitHub, pydantic, python-dateutil, setuptools, urllib3, }: buildPythonPackage (finalAttrs: { pname = "weheat"; version = "2026.2.28"; pyproject = true; src = fetchFromGitHub { owner = "wefabricate"; repo = "wh-python"; tag = finalAttrs.version; hash = "sha256-V29B30LztIHFbTRTqppR3kvVNwDoK4BPq5fK1blJUrU="; }; build-system = [ setuptools ]; dependencies = [ aenum aiohttp aiohttp-retry pydantic python-dateutil urllib3 ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "weheat" ]; meta = { description = "Library to interact with the weheat API"; homepage = "https://github.com/wefabricate/wh-python"; changelog = "https://github.com/wefabricate/wh-python/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; })