alerta-server: add missing input

This commit is contained in:
Fabian Affolter 2022-04-23 13:12:11 +02:00
parent ccfb911ea3
commit 3499ba19b7

View file

@ -21,6 +21,7 @@ python3.pkgs.buildPythonApplication rec {
psycopg2 psycopg2
pyjwt pyjwt
pymongo pymongo
pyparsing
python-dateutil python-dateutil
pytz pytz
pyyaml pyyaml
@ -29,13 +30,17 @@ python3.pkgs.buildPythonApplication rec {
sentry-sdk sentry-sdk
]; ];
doCheck = false; # We can't run the tests from Nix, because they rely on the presence of a working MongoDB server # We can't run the tests from Nix, because they rely on the presence of a working MongoDB server
doCheck = false;
disabled = python3.pythonOlder "3.6"; pythonImportsCheck = [
"alerta"
];
meta = with lib; { meta = with lib; {
homepage = "https://alerta.io"; homepage = "https://alerta.io";
description = "Alerta Monitoring System server"; description = "Alerta Monitoring System server";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ ];
}; };
} }