{ aiohttp, aioresponses, buildPythonPackage, fetchFromGitHub, hatchling, lib, lxml, pytest-asyncio, pytestCheckHook, }: buildPythonPackage rec { pname = "pyblu"; version = "2.0.5"; pyproject = true; src = fetchFromGitHub { owner = "LouisChrist"; repo = "pyblu"; tag = "v${version}"; hash = "sha256-Cmc0GXucoSSBWii+Xkx2jhG81kO+UeQUX3fKHUgLNS4="; }; pythonRelaxDeps = [ "aiohttp" ]; build-system = [ hatchling ]; dependencies = [ aiohttp lxml ]; pythonImportsCheck = [ "pyblu" ]; nativeCheckInputs = [ aioresponses pytest-asyncio pytestCheckHook ]; meta = { changelog = "https://github.com/LouisChrist/pyblu/releases/tag/${src.tag}"; description = "BluOS API client"; homepage = "https://github.com/LouisChrist/pyblu"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; }; }