81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aioresponses,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
ical,
|
|
mashumaro,
|
|
poetry-core,
|
|
pyjwt,
|
|
pytest-asyncio,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
syrupy,
|
|
time-machine,
|
|
tzlocal,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioautomower";
|
|
version = "2025.6.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Thomas55555";
|
|
repo = "aioautomower";
|
|
tag = version;
|
|
hash = "sha256-6V3utjqCLQmO2iuWdn6kE8oz9XcJ/sCfeSMWmxL/2NE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Upstream doesn't set a version
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
ical
|
|
mashumaro
|
|
pyjwt
|
|
tzlocal
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
freezegun
|
|
pytest-asyncio
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
time-machine
|
|
syrupy
|
|
];
|
|
|
|
pythonImportsCheck = [ "aioautomower" ];
|
|
|
|
disabledTests = [
|
|
# File is missing
|
|
"test_standard_mower"
|
|
# Call no found
|
|
"test_post_commands"
|
|
# Timezone mismatches
|
|
"test_full_planner_event"
|
|
"test_sinlge_planner_event"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to communicate with the Automower Connect API";
|
|
homepage = "https://github.com/Thomas55555/aioautomower";
|
|
changelog = "https://github.com/Thomas55555/aioautomower/releases/tag/${src.tag}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|