blob: 71a3e1b8e2073fe036d6a0ba59c586cde2371e57 (
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
|
{
buildPythonPackage,
click,
fetchFromGitHub,
lib,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aio-ownet";
version = "0.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "aio-ownet";
tag = "v${version}";
hash = "sha256-KgQasltfoffVjCDX9s98qnZrv+VLiEffLi9FnUD5vXc=";
};
build-system = [ poetry-core ];
optional-dependencies = {
cli = [ click ];
};
pythonImportsCheck = [ "aio_ownet" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/hacf-fr/aio-ownet/releases/tag/${src.tag}";
description = "Asynchronous OWFS (owserver network protocol) client library";
homepage = "https://github.com/hacf-fr/aio-ownet";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|