40 lines
914 B
Nix
40 lines
914 B
Nix
|
{ lib, fetchFromGitHub, python3Packages }:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "charge-lnd";
|
||
|
version = "0.1.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "accumulator";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1m1ic69aj2vlnjlp4ckan8n67r01nfysvq4w6nny32wjkr0zvphr";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [
|
||
|
aiorpcx
|
||
|
colorama
|
||
|
googleapis-common-protos
|
||
|
grpcio
|
||
|
protobuf
|
||
|
six
|
||
|
termcolor
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
install README.md charge.config.example -Dt $out/share/doc/charge-lnd
|
||
|
'';
|
||
|
|
||
|
doInstallCheck = true;
|
||
|
installCheckPhase = ''
|
||
|
$out/bin/charge-lnd --help > /dev/null
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Simple policy-based fee manager for lightning network daemon";
|
||
|
homepage = "https://github.com/accumulator/charge-lnd";
|
||
|
license = licenses.gpl2Plus;
|
||
|
maintainers = with maintainers; [ mmilata ];
|
||
|
};
|
||
|
}
|