blob: 0600213f0fb4c207b74b4dec90808d972307357e (
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
|
{
lib,
aiofiles,
aiohttp,
backoff,
buildPythonPackage,
click,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pyprosegur";
version = "0.0.14";
pyproject = true;
src = fetchFromGitHub {
owner = "dgomes";
repo = "pyprosegur";
tag = version;
hash = "sha256-FMkz5zZ5+607gfmw4KRmCgfR+TJF2JGLRVEUzZAjTrc=";
};
build-system = [ setuptools ];
dependencies = [
aiofiles
aiohttp
backoff
click
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyprosegur" ];
meta = {
description = "Python module to communicate with Prosegur Residential Alarms";
homepage = "https://github.com/dgomes/pyprosegur";
changelog = "https://github.com/dgomes/pyprosegur/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pyprosegur";
};
}
|