blob: 3970ef993cb591d2b1008073485fcf3799622274 (
plain) (
blame)
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
|
{
stdenv,
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
netifaces,
pycryptodome,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "greeclimate";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "cmroche";
repo = "greeclimate";
rev = "refs/tags/v${version}";
hash = "sha256-SO7/uheAPVFZ1C2qrzP7jB88u6EH79f1+qMZIgHZaCE=";
};
build-system = [ setuptools ];
dependencies = [
netifaces
pycryptodome
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTests = [
# OSError: [Errno 101] Network is unreachable
"test_get_device_info"
"test_device_bind"
"test_device_late_bind"
"test_update_properties"
"test_set_properties"
"test_uninitialized_properties"
"test_update_current_temp"
"test_send_temperature"
"test_enable_disable_sleep_mode"
"test_mismatch_temrec_farenheit"
"test_device_equality"
"test_issue_69_TemSen_40_should_not_set_firmware_v4"
"test_issue_87_quiet_should_set_2"
];
pythonImportsCheck = [
"greeclimate"
"greeclimate.device"
"greeclimate.discovery"
"greeclimate.exceptions"
"greeclimate.network"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Discover, connect and control Gree based minisplit systems";
homepage = "https://github.com/cmroche/greeclimate";
changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dotlambda ];
};
}
|