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