1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{
lib,
aiohttp,
aiomqtt,
buildPythonPackage,
cachetools,
defusedxml,
docker,
fetchFromGitHub,
numpy,
pillow,
pycountry,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
svg-py,
testfixtures,
}:
buildPythonPackage rec {
pname = "deebot-client";
version = "8.2.0";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "DeebotUniverse";
repo = "client.py";
rev = "refs/tags/${version}";
hash = "sha256-foIRWZcv+i/UZMMr1LjNiUpvJVD9UOWHPKHpcGHXfxQ=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aiohttp
aiomqtt
cachetools
defusedxml
numpy
pillow
svg-py
];
nativeCheckInputs = [
docker
pycountry
pytest-asyncio
pytestCheckHook
testfixtures
];
pythonImportsCheck = [ "deebot_client" ];
disabledTests = [
# Tests require running container
"test_last_message_received_at"
"test_client_bot_subscription"
"test_client_reconnect_manual"
"test_p2p_success"
"test_p2p_not_supported"
"test_p2p_data_type_not_supported"
"test_p2p_to_late"
"test_p2p_parse_error"
"test_mqtt_task_exceptions"
"test_mqtt_task_exceptions"
"test_client_reconnect_on_broker_error"
];
meta = with lib; {
description = "Deebot client library";
homepage = "https://github.com/DeebotUniverse/client.py";
changelog = "https://github.com/DeebotUniverse/client.py/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}
|