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
84
|
{
lib,
aiohttp,
asyncclick,
buildPythonPackage,
cryptography,
fetchFromGitHub,
hatchling,
kasa-crypt,
mashumaro,
orjson,
ptpython,
pytest-asyncio,
pytest-freezer,
pytest-mock,
pytest-socket,
pytest-xdist,
pytestCheckHook,
rich,
voluptuous,
}:
buildPythonPackage rec {
pname = "python-kasa";
version = "0.10.2";
pyproject = true;
src = fetchFromGitHub {
owner = "python-kasa";
repo = "python-kasa";
tag = version;
hash = "sha256-OIkqNGTnIPoHYrE5NhAxSsRCTyMGvNADvIg28EuKsEw=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
asyncclick
cryptography
mashumaro
];
nativeCheckInputs = [
pytest-asyncio
pytest-freezer
pytest-mock
pytest-socket
pytest-xdist
pytestCheckHook
voluptuous
];
optional-dependencies = {
shell = [
ptpython
rich
];
speedups = [
kasa-crypt
orjson
];
};
pytestFlags = [ "--asyncio-mode=auto" ];
disabledTestPaths = [
# Skip the examples tests
"tests/test_readme_examples.py"
# Failing on hydra
"tests/test_cli.py"
];
pythonImportsCheck = [ "kasa" ];
meta = {
description = "Python API for TP-Link Kasa Smarthome products";
homepage = "https://python-kasa.readthedocs.io/";
changelog = "https://github.com/python-kasa/python-kasa/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "kasa";
};
}
|