blob: 94091ce6ec05383d5789ad1927f935874353f8bb (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pytest-aiohttp,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "arris-tg2492lg";
version = "2.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "vanbalken";
repo = "arris-tg2492lg";
tag = version;
hash = "sha256-MQq9jMUoJgqaY0f9YIbhME2kO+ektPqBnT9REg3qDpg=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [ "arris_tg2492lg" ];
meta = {
description = "Library to connect to an Arris TG2492LG";
homepage = "https://github.com/vanbalken/arris-tg2492lg";
changelog = "https://github.com/vanbalken/arris-tg2492lg/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|