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