tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
prometheus-pve-exporter: 2.2.2 -> 2.3.0
Vojtěch Káně
2 years ago
ff0826dc
87650d0a
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
monitoring
prometheus
pve-exporter.nix
+3
-2
pkgs/servers/monitoring/prometheus/pve-exporter.nix
···
6
7
python3.pkgs.buildPythonApplication rec {
8
pname = "prometheus-pve-exporter";
9
-
version = "2.2.2";
10
11
src = fetchPypi {
12
inherit pname version;
13
-
sha256 = "0vvsiw8nj8zkx6v42f260xbsdd92l0ac4vwpm7w38j3qwvanar7k";
14
};
15
16
propagatedBuildInputs = with python3.pkgs; [
···
19
pyyaml
20
requests
21
werkzeug
0
22
];
23
24
doCheck = false;
···
6
7
python3.pkgs.buildPythonApplication rec {
8
pname = "prometheus-pve-exporter";
9
+
version = "2.3.0";
10
11
src = fetchPypi {
12
inherit pname version;
13
+
sha256 = "sha256-hL1+vP+/Xi3od+17906YARgg4APlFhRkdOCnRxDHJmM=";
14
};
15
16
propagatedBuildInputs = with python3.pkgs; [
···
19
pyyaml
20
requests
21
werkzeug
22
+
gunicorn
23
];
24
25
doCheck = false;