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