biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / alerta / client.nix
blobe95c114ee2a6010d30b17a91de201ef5cbedd2cb
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     sha256 = "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   };