8a49b41bb4
Includes - clightning 0.10.1 - lightning-loop 0.14.2
14 lines
321 B
Nix
14 lines
321 B
Nix
{ buildPythonPackage, clightning, pyln-client }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylightning";
|
|
version = "0.10.1"; # defined in ${src}/contrib/pyln-client/pyln/client/__init__.py
|
|
|
|
inherit (clightning) src;
|
|
|
|
propagatedBuildInputs = [ pyln-client ];
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/contrib/${pname}";
|
|
|
|
}
|