bitcoind-knots: 28.1.knots20250305 -> 29.1.knots20250903 charge-lnd: 0.3.0 -> 0.3.1 clightning: 25.05 -> 25.09
22 lines
459 B
Nix
22 lines
459 B
Nix
{ buildPythonPackage, hatchling, pytestCheckHook, clightning, pyln-bolt7, pyln-proto }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyln-client";
|
|
version = clightning.version;
|
|
format = "pyproject";
|
|
|
|
inherit (clightning) src;
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [
|
|
pyln-bolt7
|
|
pyln-proto
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonNamespaces = [ "pyln" ];
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/contrib/${pname}";
|
|
}
|