c9c2104009
klein 20.6.0 was failing Twisted 21.7.0 tests.
26 lines
976 B
Nix
26 lines
976 B
Nix
{ version, src, lib, buildPythonPackage, fetchurl, future, configparser, joinmarketbase, joinmarketdaemon, mnemonic, argon2_cffi, bencoderpyx, pyaes, joinmarketbitcoin, txtorcon, klein, pyjwt, autobahn, cryptography }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "joinmarketclient";
|
|
inherit version src;
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmclient";
|
|
|
|
checkInputs = [ joinmarketbitcoin joinmarketdaemon txtorcon ];
|
|
|
|
# configparser may need to be compiled with python_version<"3.2"
|
|
propagatedBuildInputs = [ future configparser joinmarketbase mnemonic argon2_cffi bencoderpyx pyaes klein pyjwt autobahn cryptography ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace setup.py \
|
|
--replace "'klein==20.6.0'" "'klein==21.8.0'"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Client library for Bitcoin coinjoins";
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|