Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "bitcoin-prometheus-exporter";
|
|
version = "0.9.0";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jvstein";
|
|
repo = pname;
|
|
tag = "v${version}";
|
|
sha256 = "sha256-08QG/5Kj++rjWz7OciqKSJUk00lSJCbfB5XwwP+h4so=";
|
|
};
|
|
|
|
# Copying bitcoind-monitor.py is enough.
|
|
# The makefile builds docker containers.
|
|
dontBuild = true;
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
prometheus-client
|
|
python-bitcoinlib
|
|
riprova
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp bitcoind-monitor.py $out/bin/
|
|
|
|
mkdir -p $out/share/${pname}
|
|
cp -r dashboard README.md $out/share/${pname}/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for Bitcoin Core nodes";
|
|
mainProgram = "bitcoind-monitor.py";
|
|
homepage = "https://github.com/jvstein/bitcoin-prometheus-exporter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mmilata ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|