Files
nixpkgs/pkgs/development/python-modules/actron-neo-api/default.nix
T
2025-12-15 14:11:40 +00:00

59 lines
1.2 KiB
Nix

{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pydantic,
pytest-asyncio,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "actron-neo-api";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kclif9";
repo = "actronneoapi";
tag = "v${version}";
hash = "sha256-pqBMtrLqGP61nmUE5H34nH969fON2KgyCrEmd3/2X8w=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aiohttp
pydantic
];
pythonImportsCheck = [ "actron_neo_api" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTests = [
# test hangs
"test_poll_for_token_pending"
# AttributeError: property 'authorization_header' of 'ActronAirOAuth2DeviceCodeAuth' object has no setter
"test_lazy_token_refres"
# ActronAirAuthError: Refresh token is required to refresh the access token
"test_get_user_info"
];
meta = {
changelog = "https://github.com/kclif9/actronneoapi/releases/tag/${src.tag}";
description = "Communicate with Actron Air systems via the Actron Neo API";
homepage = "https://github.com/kclif9/actronneoapi";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}