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
|
{
lib,
aiofiles,
aiohttp,
aioresponses,
aiounittest,
buildPythonPackage,
ciso8601,
fetchFromGitHub,
freenub,
poetry-core,
pyjwt,
pytest-asyncio,
pytest-cov-stub,
pytest-freezegun,
pytestCheckHook,
python-dateutil,
python-socketio,
pythonOlder,
requests-mock,
requests,
typing-extensions,
}:
buildPythonPackage rec {
pname = "yalexs";
version = "8.7.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "bdraco";
repo = "yalexs";
rev = "refs/tags/v${version}";
hash = "sha256-+1Ff0VttUm9cwrEWNiKQfBmYjrtA3AZxWVm/iU21XCE=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "aiohttp" ];
dependencies = [
aiofiles
aiohttp
ciso8601
freenub
pyjwt
python-dateutil
python-socketio
requests
typing-extensions
] ++ python-socketio.optional-dependencies.asyncio_client;
nativeCheckInputs = [
aioresponses
aiounittest
pytest-asyncio
pytest-cov-stub
pytest-freezegun
pytestCheckHook
requests-mock
];
pythonImportsCheck = [ "yalexs" ];
meta = with lib; {
description = "Python API for Yale Access (formerly August) Smart Lock and Doorbell";
homepage = "https://github.com/bdraco/yalexs";
changelog = "https://github.com/bdraco/yalexs/blob/${src.rev}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|