2020-11-12 09:07:39 -08:00
|
|
|
{ buildPythonPackage, clightning, pyln-client }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pylightning";
|
2021-08-14 10:57:49 -07:00
|
|
|
version = "0.10.1"; # defined in ${src}/contrib/pyln-client/pyln/client/__init__.py
|
2020-11-12 09:07:39 -08:00
|
|
|
|
|
|
|
inherit (clightning) src;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyln-client ];
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/contrib/${pname}";
|
|
|
|
|
|
|
|
}
|