maintainers: remove email for amuckstot30 (#360059)
[NixPkgs.git] / pkgs / servers / monitoring / alerta / client.nix
blobea1e589ad4f29111c1167ee4a47c3ea216c3fb4e
1 { lib
2 , python3
3 , fetchPypi
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "alerta";
8   version = "8.5.3";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-ePvT2icsgv+io5aDDUr1Zhfodm4wlqh/iqXtNkFhS10=";
13   };
15   propagatedBuildInputs = with python3.pkgs; [
16     six click requests requests-hawk pytz tabulate
17   ];
19   doCheck = false;
21   disabled = python3.pythonOlder "3.6";
23   meta = with lib; {
24     homepage = "https://alerta.io";
25     description = "Alerta Monitoring System command-line interface";
26     mainProgram = "alerta";
27     license = licenses.asl20;
28   };