blob: 798ba7ea9ab47ec7ebfaad4f57bbe00a7b6c8130 (
about) (
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
|
{
lib,
aiohttp,
aiortsp,
buildPythonPackage,
fetchFromGitHub,
orjson,
pycryptodomex,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "reolink-aio";
version = "0.13.2";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "starkillerOG";
repo = "reolink_aio";
tag = version;
hash = "sha256-khO8mu2aWBU9TiorKkMd1e54r5C7ovv6eWyJ61dzOJw=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
aiortsp
orjson
pycryptodomex
typing-extensions
];
pythonImportsCheck = [ "reolink_aio" ];
# All tests require a network device
doCheck = false;
meta = with lib; {
description = "Module to interact with the Reolink IP camera API";
homepage = "https://github.com/starkillerOG/reolink_aio";
changelog = "https://github.com/starkillerOG/reolink_aio/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|