{ lib, bleak, bleak-retry-connector, buildPythonPackage, fetchFromGitHub, pythonOlder, setuptools, }: buildPythonPackage rec { pname = "aioacaia"; version = "0.1.17"; pyproject = true; disabled = pythonOlder "3.12"; src = fetchFromGitHub { owner = "zweckj"; repo = "aioacaia"; tag = "v${version}"; hash = "sha256-y9NSHiB66ICR+qJcLOdddnkm+f5hd9Zbqamr1UCzdlk="; }; build-system = [ setuptools ]; dependencies = [ bleak bleak-retry-connector ]; # Module only has a homebrew tests doCheck = false; pythonImportsCheck = [ "aioacaia" ]; meta = { description = "Async implementation of pyacaia"; homepage = "https://github.com/zweckj/aioacaia"; changelog = "https://github.com/zweckj/aioacaia/releases/tag/${src.tag}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; }; }