2023-11-11 17:40:49 +00:00
|
|
|
{ version, src, lib, buildPythonPackage, fetchurl, future, twisted, service-identity, chromalog, txtorcon, pyaes }:
|
2019-08-05 07:50:55 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joinmarketbase";
|
|
|
|
inherit version src;
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbase";
|
|
|
|
|
2023-07-08 13:33:04 +00:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|twisted==22.4.0|twisted==22.10.0|' setup.py
|
2023-09-11 08:31:24 +00:00
|
|
|
sed -i 's|service-identity==21.1.0|service-identity==23.1.0|' setup.py
|
2023-07-08 13:33:04 +00:00
|
|
|
'';
|
|
|
|
|
2023-11-11 17:40:49 +00:00
|
|
|
propagatedBuildInputs = [ future twisted service-identity chromalog txtorcon pyaes ];
|
2019-08-05 07:50:55 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|