2021-02-06 10:43:57 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
2023-05-25 16:06:38 +00:00
|
|
|
, fetchPypi
|
2021-02-06 10:43:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "alerta";
|
2024-04-13 03:52:16 +00:00
|
|
|
version = "8.5.3";
|
2021-02-06 10:43:57 +00:00
|
|
|
|
2023-05-25 16:06:38 +00:00
|
|
|
src = fetchPypi {
|
2021-02-06 10:43:57 +00:00
|
|
|
inherit pname version;
|
2024-07-13 16:25:56 +00:00
|
|
|
hash = "sha256-ePvT2icsgv+io5aDDUr1Zhfodm4wlqh/iqXtNkFhS10=";
|
2021-02-06 10:43:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
six click requests requests-hawk pytz tabulate
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
disabled = python3.pythonOlder "3.6";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://alerta.io";
|
|
|
|
description = "Alerta Monitoring System command-line interface";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "alerta";
|
2021-02-06 10:43:57 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|