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
|
{
lib,
aioconsole,
bleak-retry-connector,
bleak,
buildPythonPackage,
deprecated,
fetchFromGitHub,
freezegun,
poetry-core,
poetry-dynamic-versioning,
pytest-asyncio,
pytestCheckHook,
syrupy,
tzdata,
tzlocal,
}:
buildPythonPackage rec {
pname = "melnor-bluetooth";
version = "0.0.25";
pyproject = true;
src = fetchFromGitHub {
owner = "vanstinator";
repo = "melnor-bluetooth";
tag = "v${version}";
hash = "sha256-BQKXQrPT/+qm9cRO7pfScPwW0iwdhliTfX4XJ/kRQG0=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [
aioconsole
bleak
bleak-retry-connector
deprecated
tzdata
tzlocal
];
nativeCheckInputs = [
freezegun
pytest-asyncio
pytestCheckHook
syrupy
];
pythonImportsCheck = [ "melnor_bluetooth" ];
meta = {
description = "Module to interact with Melnor and Eden bluetooth watering timers";
homepage = "https://github.com/vanstinator/melnor-bluetooth";
changelog = "https://github.com/vanstinator/melnor-bluetooth/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|