mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "fritz-exporter";
|
|
version = "2.3.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pdreker";
|
|
repo = "fritz_exporter";
|
|
rev = "fritzexporter-v${version}";
|
|
hash = "sha256-Dv/2Og1OJV7canZ8Y5Pai5gPRUvcRDYmSGoD2pnAkSs=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/pdreker/fritz_exporter/pull/282
|
|
./console-script.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# don't test coverage
|
|
sed -i "/^addopts/d" pyproject.toml
|
|
'';
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
attrs
|
|
fritzconnection
|
|
prometheus-client
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/pdreker/fritz_exporter/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Prometheus exporter for Fritz!Box home routers";
|
|
homepage = "https://github.com/pdreker/fritz_exporter";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "fritzexporter";
|
|
maintainers = with lib.maintainers; [ marie ];
|
|
};
|
|
}
|