btcpayserver: 1.11.2 -> 1.11.4 clightning: 23.05.2 -> 23.08.1 hwi: 2.2.1 -> 2.3.1 Remove custom coincurve, since nixos-23.05 includes the latest version of coincurve (18) that's required by pyln-proto. Co-authored-by: Erik Arvstedt <erik.arvstedt@gmail.com>
21 lines
662 B
Nix
21 lines
662 B
Nix
{ version, src, lib, buildPythonPackage, fetchurl, future, twisted, service-identity, chromalog, txtorcon }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "joinmarketbase";
|
|
inherit version src;
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbase";
|
|
|
|
patchPhase = ''
|
|
sed -i 's|twisted==22.4.0|twisted==22.10.0|' setup.py
|
|
sed -i 's|service-identity==21.1.0|service-identity==23.1.0|' setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [ future twisted service-identity chromalog txtorcon ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|