mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
28 lines
566 B
Nix
28 lines
566 B
Nix
{ lib
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "alerta";
|
|
version = "8.5.1";
|
|
|
|
src = python3.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-O13Ic2iHjNF/llp6vdaAiiWExcTBPsz46GAWY3oGDY8=";
|
|
};
|
|
|
|
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";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|