nix-bitcoin/pkgs/python-packages/pyln-proto/default.nix

35 lines
588 B
Nix
Raw Normal View History

{ buildPythonPackage
, clightning
, poetry-core
, pytestCheckHook
2020-11-12 09:07:39 -08:00
, bitstring
, cryptography
, coincurve
, base58
}:
buildPythonPackage rec {
pname = "pyln-proto";
version = clightning.version;
format = "pyproject";
2020-11-12 09:07:39 -08:00
inherit (clightning) src;
nativeBuildInputs = [ poetry-core ];
2020-11-12 09:07:39 -08:00
propagatedBuildInputs = [
bitstring
cryptography
coincurve
base58
];
checkInputs = [ pytestCheckHook ];
2020-11-12 09:07:39 -08:00
postUnpack = "sourceRoot=$sourceRoot/contrib/pyln-proto";
postPatch = ''
sed -i 's|cryptography = "^36.0.1"|cryptography = "^38.0.0"|' pyproject.toml
'';
2020-11-12 09:07:39 -08:00
}