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
85
86
87
88
89
90
91
92
93
94
95
|
{
lib,
buildPythonPackage,
bx-py-utils,
colorlog,
fetchFromGitHub,
importlib-resources,
jaraco-classes,
jaraco-collections,
jaraco-itertools,
jaraco-context,
jaraco-functools,
jaraco-net,
keyring,
lomond,
more-itertools,
platformdirs,
pytest-responses,
pytestCheckHook,
requests,
requests-toolbelt,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "jaraco-abode";
version = "6.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.abode";
tag = "v${version}";
hash = "sha256-nnnVtNXQ7Sa4wXl0ay3OyjvOq2j90pTwhK24WR8mrBo=";
};
postPatch = ''
sed -i "/coherent\.licensed/d" pyproject.toml
'';
build-system = [
setuptools
setuptools-scm
];
dependencies = [
requests
lomond
colorlog
keyring
requests-toolbelt
jaraco-collections
jaraco-context
jaraco-classes
jaraco-net
more-itertools
importlib-resources
bx-py-utils
platformdirs
jaraco-itertools
jaraco-functools
];
nativeCheckInputs = [
pytest-responses
pytestCheckHook
];
pythonImportsCheck = [ "jaraco.abode" ];
preCheck = ''
export HOME=$TEMP
'';
disabledTests = [
"_cookie_string"
"test_cookies"
"test_empty_cookies"
"test_invalid_cookies"
# Issue with the regex
"test_camera_capture_no_control_URLs"
];
meta = {
changelog = "https://github.com/jaraco/jaraco.abode/blob/${src.tag}/NEWS.rst";
homepage = "https://github.com/jaraco/jaraco.abode";
description = "Library interfacing to the Abode home security system";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
jamiemagee
dotlambda
];
};
}
|