2022-05-05 18:43:10 +00:00
|
|
|
{ buildPythonPackage, poetry-core, pytestCheckHook, clightning, pyln-proto }:
|
2021-11-10 20:25:11 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyln-bolt7";
|
2022-05-05 18:43:10 +00:00
|
|
|
# The version is defined here:
|
|
|
|
# https://github.com/ElementsProject/lightning/blob/master/contrib/pyln-spec/bolt7/pyproject.toml
|
|
|
|
version = "1.0.2.186.post0";
|
|
|
|
format = "pyproject";
|
2021-11-10 20:25:11 +00:00
|
|
|
|
|
|
|
inherit (clightning) src;
|
|
|
|
|
2022-05-05 18:43:10 +00:00
|
|
|
nativeBuildInputs = [ poetry-core ];
|
2021-11-10 20:25:11 +00:00
|
|
|
propagatedBuildInputs = [ pyln-proto ];
|
2022-05-05 18:43:10 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2021-11-10 20:25:11 +00:00
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/contrib/pyln-spec/bolt7";
|
|
|
|
}
|