mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 02:33:15 +00:00
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
borgmatic,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "prometheus-borgmatic-exporter";
|
|
version = "0.2.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maxim-mityutko";
|
|
repo = "borgmatic-exporter";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ZZdCuIavJrIHO/ayMnirNRYyqovKQaW5jTRRrSOhofQ=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "prometheus-client" ];
|
|
|
|
build-system = with python3Packages; [ poetry-core ];
|
|
|
|
propagatedBuildInputs =
|
|
[ borgmatic ]
|
|
++ (with python3Packages; [
|
|
arrow
|
|
click
|
|
flask
|
|
loguru
|
|
pretty-errors
|
|
prometheus-client
|
|
timy
|
|
waitress
|
|
]);
|
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for Borgmatic";
|
|
homepage = "https://github.com/maxim-mityutko/borgmatic-exporter";
|
|
changelog = "https://github.com/maxim-mityutko/borgmatic-exporter/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ flandweber ];
|
|
mainProgram = "borgmatic-exporter";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|