nixpkgs/pkgs/servers/monitoring/alerta/client.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
591 B
Nix
Raw Normal View History

{ lib
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "alerta";
2024-04-13 03:52:16 +00:00
version = "8.5.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-ePvT2icsgv+io5aDDUr1Zhfodm4wlqh/iqXtNkFhS10=";
};
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";
mainProgram = "alerta";
license = licenses.asl20;
};
}