blob: 8030a3a65e8b0430be116b52c3c88cdc93840c0e (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "anthemav";
version = "1.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "nugget";
repo = "python-anthemav";
tag = "v${version}";
hash = "sha256-ZjAt4oODx09Qij0PwBvLCplSjwdBx2fReiwjmKhdPa0=";
};
nativeBuildInputs = [
setuptools
wheel
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "anthemav" ];
meta = {
description = "Python asyncio module to interface with Anthem AVM and MRX receivers";
mainProgram = "anthemav_monitor";
homepage = "https://github.com/nugget/python-anthemav";
changelog = "https://github.com/nugget/python-anthemav/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|