mqtt-exporter: 1.7.0 -> 1.8.1-1

Changelog: https://github.com/kpetremann/mqtt-exporter/releases/tag/v1.8.1-1
This commit is contained in:
Fabian Affolter
2025-09-03 23:01:15 +02:00
parent 50afe2d977
commit ece741069f

View File

@@ -1,23 +1,21 @@
{
lib,
python3,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "mqtt-exporter";
version = "1.7.0";
version = "1.8.1-1";
pyproject = true;
src = fetchFromGitHub {
owner = "kpetremann";
repo = "mqtt-exporter";
tag = "v${version}";
hash = "sha256-aEuwJeNMB6sou6oyAwCj11lOdMCjCyEsrDcMF/pHzcg=";
hash = "sha256-FBB8KvSLrcJ9pdfVq18ykovwApNZoOcU0xTfvAWTxpc=";
};
pythonRelaxDeps = [ "prometheus-client" ];
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [