1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytz
5, oauthlib
6, requests
7, websocket-client
8}:
9
10buildPythonPackage rec {
11 pname = "pyfireservicerota";
12 version = "0.0.43";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-3+QK1BVuWYii0oYT4xXMOYJZmVKrB4EmqE0EkdFlZvE=";
17 };
18
19 propagatedBuildInputs = [
20 pytz
21 oauthlib
22 requests
23 websocket-client
24 ];
25
26 # no tests implemented
27 doCheck = false;
28
29 pythonImportsCheck = [ "pyfireservicerota" ];
30
31 meta = with lib; {
32 description = "Python 3 API wrapper for FireServiceRota/BrandweerRooster";
33 homepage = "https://github.com/cyberjunky/python-fireservicerota";
34 license = licenses.mit;
35 maintainers = with maintainers; [ dotlambda ];
36 };
37}