prometheus-kea-exporter: 0.5.1 -> 0.6.1

https://github.com/mweinelt/kea-exporter/blob/v0.6.1/HISTORY
This commit is contained in:
Martin Weinelt 2024-03-20 00:46:13 +01:00
parent 9a747326c4
commit a466aaa70c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,22 +1,28 @@
{ lib, python3Packages, fetchPypi, nixosTests }:
{ lib
, python3Packages
, fetchPypi
, nixosTests
}:
python3Packages.buildPythonApplication rec {
pname = "kea-exporter";
version = "0.5.1";
version = "0.6.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-rNGA5XEx9xVUP1SeDPgXcaqgDhgX6JFhRX9GM454P5A=";
pname = "kea_exporter";
inherit version;
hash = "sha256-PyNFSTDqT+PBY7d9NSG1FVhN+Y3ID13T6859kBYsFzU=";
};
nativeBuildInputs = with python3Packages; [
pdm-pep517
pdm-backend
];
propagatedBuildInputs = with python3Packages; [
click
prometheus-client
requests
];
checkPhase = ''
@ -29,6 +35,7 @@ python3Packages.buildPythonApplication rec {
};
meta = with lib; {
changelog = "https://github.com/mweinelt/kea-exporter/blob/v${version}/HISTORY";
description = "Export Kea Metrics in the Prometheus Exposition Format";
mainProgram = "kea-exporter";
homepage = "https://github.com/mweinelt/kea-exporter";