Merge pull request #126926 from dotlambda/pyfireservicerota-init

This commit is contained in:
Sandro 2021-06-15 13:09:14 +02:00 committed by GitHub
commit 48cc7f1d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytz
, oauthlib
, requests
, websocket_client
}:
buildPythonPackage rec {
pname = "pyfireservicerota";
version = "0.0.40";
src = fetchPypi {
inherit pname version;
sha256 = "8d8173f6682ef2a61367660a15559c8c7a7e00db3f98092e0fa52e771df356f4";
};
propagatedBuildInputs = [
pytz
oauthlib
requests
websocket_client
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pyfireservicerota" ];
meta = with lib; {
description = "Python 3 API wrapper for FireServiceRota/BrandweerRooster";
homepage = "https://github.com/cyberjunky/python-fireservicerota";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -259,7 +259,7 @@
"filesize" = ps: with ps; [ ];
"filter" = ps: with ps; [ sqlalchemy ];
"fints" = ps: with ps; [ fints ];
"fireservicerota" = ps: with ps; [ ]; # missing inputs: pyfireservicerota
"fireservicerota" = ps: with ps; [ pyfireservicerota ];
"firmata" = ps: with ps; [ pymata-express ];
"fitbit" = ps: with ps; [ aiohttp-cors fitbit ];
"fixer" = ps: with ps; [ fixerio ];

View file

@ -374,6 +374,7 @@ in with py.pkgs; buildPythonApplication rec {
"file"
"filesize"
"filter"
"fireservicerota"
"firmata"
"flo"
"flume"

View file

@ -5197,6 +5197,8 @@ in {
pyatag = callPackage ../development/python-modules/pyatag { };
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
pynndescent = callPackage ../development/python-modules/pynndescent { };
pynobo = callPackage ../development/python-modules/pynobo { };