blob: d06af4ba52a097054f8434d788f76d296f0f9ad6 (
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
|
{
aiohttp,
aiomqtt,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
pydantic,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "actron-neo-api";
version = "0.5.16";
pyproject = true;
src = fetchFromGitHub {
owner = "kclif9";
repo = "actronneoapi";
tag = "v${version}";
hash = "sha256-2iMZVWXC1LK4zh7CtWbtFnipj47lwOGMKWyslpIIaUE=";
};
build-system = [
hatch-vcs
hatchling
];
dependencies = [
aiohttp
aiomqtt
pydantic
];
pythonImportsCheck = [ "actron_neo_api" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = {
changelog = "https://github.com/kclif9/actronneoapi/releases/tag/${src.tag}";
description = "Communicate with Actron Air systems via the Actron Neo API";
homepage = "https://github.com/kclif9/actronneoapi";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|