blob: 98dbc50387df97b35d88298dc7a4aa53c4099667 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pdm-backend,
pytz,
oauthlib,
requests,
websocket-client,
}:
buildPythonPackage rec {
pname = "pyfireservicerota";
version = "0.0.47";
pyproject = true;
src = fetchFromGitHub {
owner = "cyberjunky";
repo = "python-fireservicerota";
tag = version;
hash = "sha256-2pCv/9VwGUDS5wFdJCxOevl7vWg+iXInI/xY3jPp7BM=";
};
build-system = [ pdm-backend ];
dependencies = [
pytz
oauthlib
requests
websocket-client
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pyfireservicerota" ];
meta = {
changelog = "https://github.com/cyberjunky/python-fireservicerota/releases/tag/${src.tag}";
description = "Python 3 API wrapper for FireServiceRota/BrandweerRooster";
homepage = "https://github.com/cyberjunky/python-fireservicerota";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|