{ lib, asyncssh, bcrypt, buildPythonPackage, fetchFromGitHub, pytest-cov-stub, pytest-asyncio, pytest-mock, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "aioasuswrt"; version = "2.0.8"; pyproject = true; src = fetchFromGitHub { owner = "kennedyshead"; repo = "aioasuswrt"; tag = "V${version}"; hash = "sha256-ax2XvZjZ1P8p80JW2WZAy2pdBKgwxuEaf6Erdna8E1s="; }; build-system = [ setuptools ]; dependencies = [ asyncssh bcrypt ]; nativeCheckInputs = [ pytest-asyncio pytest-cov-stub pytest-mock pytestCheckHook ]; pythonImportsCheck = [ "aioasuswrt" ]; meta = { description = "Python module for Asuswrt"; homepage = "https://github.com/kennedyshead/aioasuswrt"; changelog = "https://github.com/kennedyshead/aioasuswrt/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }