nixpkgs/pkgs/servers/monitoring/prometheus/knot-exporter.nix
2024-10-16 15:20:12 +02:00

42 lines
867 B
Nix

{ lib
, python3
, fetchPypi
, nixosTests
}:
python3.pkgs.buildPythonApplication rec {
pname = "knot-exporter";
version = "3.4.1";
pyproject = true;
src = fetchPypi {
pname = "knot_exporter";
inherit version;
hash = "sha256-CkuOO6pOl3/8rLKb5P5a09oNv8rvmy/mURv0b3FRNGA=";
};
nativeBuildInputs = [
python3.pkgs.hatchling
];
propagatedBuildInputs = with python3.pkgs; [
libknot
prometheus-client
psutil
];
pythonImportsCheck = [
"knot_exporter"
];
passthru.tests = { inherit (nixosTests.prometheus-exporters) knot; };
meta = with lib; {
description = "Prometheus exporter for Knot DNS";
homepage = "https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/knot_exporter";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ma27 hexa ];
mainProgram = "knot-exporter";
};
}