{ lib, aiohttp, aioresponses, bleak, bleak-retry-connector, buildPythonPackage, cryptography, fetchFromGitHub, mashumaro, pytest-asyncio, pytestCheckHook, setuptools, syrupy, }: buildPythonPackage rec { pname = "pylamarzocco"; version = "2.2.4"; pyproject = true; src = fetchFromGitHub { owner = "zweckj"; repo = "pylamarzocco"; tag = "v${version}"; hash = "sha256-u7B+19LtFN8ylNKZn7wv9SH3j6k1/cLyvIw8EOVfvho="; }; build-system = [ setuptools ]; dependencies = [ aiohttp bleak bleak-retry-connector cryptography mashumaro ]; nativeCheckInputs = [ aioresponses pytest-asyncio pytestCheckHook syrupy ]; pythonImportsCheck = [ "pylamarzocco" ]; meta = { description = "Library to interface with La Marzocco's cloud"; homepage = "https://github.com/zweckj/pylamarzocco"; changelog = "https://github.com/zweckj/pylamarzocco/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }