Files
nixpkgs/pkgs/development/python-modules/aioasuswrt/default.nix
T
Martin Weinelt cf0d016be5 python3Packages.aioasuswrt: 1.5.4 -> 2.0.8
https://github.com/kennedyshead/aioasuswrt/releases/tag/V2.0.8

This commit was automatically generated using update-python-libraries.
2026-02-01 16:40:49 +01:00

50 lines
951 B
Nix

{
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 ];
};
}