blob: 8e915f2e4b035f3b386392a13808825f3dba6c39 (
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
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build time
setuptools-scm,
# propagates
aiohttp,
# tests
pytest-asyncio,
pytestCheckHook,
}:
let
pname = "uasiren";
version = "0.0.1";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchFromGitHub {
owner = "PaulAnnekov";
repo = "uasiren";
rev = "v${version}";
hash = "sha256-NHrnG5Vhz+JZgcTJyfIgGz0Ye+3dFVv2zLCCqw2++oM=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"uasiren"
"uasiren.client"
];
meta = {
changelog = "https://github.com/PaulAnnekov/uasiren/releases/tag/v${version}";
description = "Implements siren.pp.ua API - public wrapper for api.ukrainealarm.com API that returns info about Ukraine air-raid alarms";
homepage = "https://github.com/PaulAnnekov/uasiren";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
|