joinmarket: add private python package set

This is a nonfunctional refactoring commit.

It's needed because pkg `pyln-proto`, which is introduced in the next commit,
requires a different, incompatible version of `cryptography`, which
must be placed in a different python package set.
This commit is contained in:
Erik Arvstedt 2022-05-05 20:43:09 +02:00 committed by Jonas Nick
parent ca834cce84
commit 900836fe0d
No known key found for this signature in database
GPG key ID: 4861DBF262123605
3 changed files with 18 additions and 6 deletions

View file

@ -9,7 +9,7 @@ let self = {
cl-rest = pkgs.callPackage ./cl-rest { };
clboss = pkgs.callPackage ./clboss { };
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);
joinmarket = pkgs.callPackage ./joinmarket { inherit (self) nbPython3Packages; };
joinmarket = pkgs.callPackage ./joinmarket { nbPythonPackageOverrides = import ./python-packages self; };
lndinit = pkgs.callPackage ./lndinit { };
liquid-swap = pkgs.python3Packages.callPackage ./liquid-swap { };
rtl = pkgs.callPackage ./rtl { };