blob: 5c612efc71444a8955ac1cdddd79e1ead7399328 (
plain)
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
|
{
lib,
aioredis,
apscheduler,
buildPythonPackage,
ephem,
fetchPypi,
hiredis,
pytestCheckHook,
pythonAtLeast,
pytz,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "automate-home";
version = "0.9.1";
pyproject = true;
# Typing issue
disabled = pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;
hash = "sha256-41qd+KPSrOrczkovwXht3irbcYlYehBZ1HZ44yZe4cM=";
};
postPatch = ''
# Rename pyephem, https://github.com/majamassarini/automate-home/pull/3
substituteInPlace setup.py \
--replace-fail "pyephem" "ephem" \
--replace-fail "aioredis==1.3.1" "aioredis"
'';
build-system = [ setuptools ];
dependencies = [
apscheduler
hiredis
aioredis
ephem
pytz
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "home" ];
meta = {
description = "Python module to automate (home) devices";
homepage = "https://github.com/majamassarini/automate-home";
changelog = "https://github.com/majamassarini/automate-home/releases/tag/${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}
|