nixpkgs/pkgs/servers/monitoring/prometheus/xmpp-alerts.nix

42 lines
867 B
Nix
Raw Normal View History

2021-04-29 21:29:51 +00:00
{ lib
, fetchFromGitHub
, python3Packages
, prometheus-alertmanager
}:
2020-02-01 14:02:58 +00:00
2021-04-29 21:29:51 +00:00
python3Packages.buildPythonApplication rec {
2020-02-01 14:02:58 +00:00
pname = "prometheus-xmpp-alerts";
2021-04-29 21:29:51 +00:00
version = "0.5.1";
2020-02-01 14:02:58 +00:00
src = fetchFromGitHub {
owner = "jelmer";
repo = pname;
2021-04-29 21:29:51 +00:00
rev = "v${version}";
sha256 = "0qmmmlcanbrhyyxi32gy3gibgvj7jdjwpa8cf5ci9czvbyxg4rld";
2020-02-01 14:02:58 +00:00
};
2021-04-29 21:29:51 +00:00
propagatedBuildInputs = [
prometheus-alertmanager
] ++ (with python3Packages; [
aiohttp
slixmpp
prometheus_client
pyyaml
]);
checkInputs = with python3Packages; [
pytz
];
checkPhase = ''
${python3Packages.python.interpreter} -m unittest discover
'';
2020-02-01 14:02:58 +00:00
meta = {
description = "XMPP Web hook for Prometheus";
homepage = "https://github.com/jelmer/prometheus-xmpp-alerts";
maintainers = with lib.maintainers; [ fpletz ];
license = with lib.licenses; [ asl20 ];
};
}