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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
certifi,
scapy,
urllib3,
semantic-version,
aiohttp,
jsons,
requests,
cryptography,
# Test inputs
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "plugp100";
version = "5.1.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "petretiandrea";
repo = "plugp100";
tag = version;
sha256 = "sha256-bPjgyScHxiUke/M5S6BOw7df7wbNuSy5ouVIK5guWxw=";
};
propagatedBuildInputs = [
certifi
jsons
requests
aiohttp
semantic-version
cryptography
scapy
urllib3
];
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
disabledTestPaths = [
"tests/integration/"
"tests/unit/hub_child/"
"tests/unit/test_plug_strip.py"
"tests/unit/test_hub.py "
"tests/unit/test_klap_protocol.py"
];
meta = {
description = "Python library to control Tapo Plug P100 devices";
homepage = "https://github.com/petretiandrea/plugp100";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ pyle ];
};
}
|