prometheus-xmpp-alerts: init at 0.4.2

This commit is contained in:
Franz Pletz
2020-02-01 15:04:01 +01:00
parent d3abaa51e1
commit add880c5e8
4 changed files with 73 additions and 0 deletions
@@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication rec {
pname = "prometheus-xmpp-alerts";
version = "0.4.2";
src = fetchFromGitHub {
owner = "jelmer";
repo = pname;
rev = version;
sha256 = "17aq6v4ahnga82r350kx1y8i7zgikpzmwzaacj7a339kh8hxkh63";
};
propagatedBuildInputs = with pythonPackages; [ slixmpp prometheus_client pyyaml ];
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 ];
};
}