mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
45 lines
930 B
Nix
45 lines
930 B
Nix
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "lndmanage";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitromortac";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "19sqf7cjslwpfzcdbyq182dx7gnn9hii77sahbnh88v69qxgwzvb";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
cycler
|
|
decorator
|
|
googleapis-common-protos
|
|
grpcio
|
|
grpcio-tools
|
|
kiwisolver
|
|
networkx
|
|
numpy
|
|
protobuf
|
|
pyparsing
|
|
python-dateutil
|
|
six
|
|
pygments
|
|
];
|
|
|
|
preBuild = ''
|
|
substituteInPlace setup.py --replace '==' '>='
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Channel management tool for lightning network daemon (LND) operators";
|
|
homepage = "https://github.com/bitromortac/lndmanage";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mmilata ];
|
|
};
|
|
}
|