about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-04-23 13:12:11 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-04-23 16:09:25 +0200
commit3499ba19b7af62521d2ac1aa24df01caa20018bd (patch)
treeccbdf541dca6534faf66b81a2fdacc0f766c96a9 /pkgs/servers
parentccfb911ea3ad5c15d30a8514cea1261bb1cdf2d1 (diff)
alerta-server: add missing input
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/monitoring/alerta/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/servers/monitoring/alerta/default.nix b/pkgs/servers/monitoring/alerta/default.nix
index e69a594a728bc..2e75212c4bfc5 100644
--- a/pkgs/servers/monitoring/alerta/default.nix
+++ b/pkgs/servers/monitoring/alerta/default.nix
@@ -21,6 +21,7 @@ python3.pkgs.buildPythonApplication rec {
     psycopg2
     pyjwt
     pymongo
+    pyparsing
     python-dateutil
     pytz
     pyyaml
@@ -29,13 +30,17 @@ python3.pkgs.buildPythonApplication rec {
     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; {
     homepage = "https://alerta.io";
     description = "Alerta Monitoring System server";
     license = licenses.asl20;
+    maintainers = with maintainers; [ ];
   };
 }