From ff0826dcbe7979facfaea18889af55f350f500e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20K=C3=A1n=C4=9B?= Date: Tue, 20 Jun 2023 14:34:14 +0200 Subject: [PATCH] prometheus-pve-exporter: 2.2.2 -> 2.3.0 --- pkgs/servers/monitoring/prometheus/pve-exporter.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/pve-exporter.nix b/pkgs/servers/monitoring/prometheus/pve-exporter.nix index 6dcb53fd219f..f3598304b89c 100644 --- a/pkgs/servers/monitoring/prometheus/pve-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/pve-exporter.nix @@ -6,11 +6,11 @@ python3.pkgs.buildPythonApplication rec { pname = "prometheus-pve-exporter"; - version = "2.2.2"; + version = "2.3.0"; src = fetchPypi { inherit pname version; - sha256 = "0vvsiw8nj8zkx6v42f260xbsdd92l0ac4vwpm7w38j3qwvanar7k"; + sha256 = "sha256-hL1+vP+/Xi3od+17906YARgg4APlFhRkdOCnRxDHJmM="; }; propagatedBuildInputs = with python3.pkgs; [ @@ -19,6 +19,7 @@ python3.pkgs.buildPythonApplication rec { pyyaml requests werkzeug + gunicorn ]; doCheck = false;