2021-03-09 08:48:25 -08:00
|
|
|
{ version, src, lib, buildPythonPackage, fetchurl, future, twisted, service-identity, chromalog, txtorcon }:
|
2019-08-05 00:50:55 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joinmarketbase";
|
|
|
|
inherit version src;
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbase";
|
|
|
|
|
2021-03-09 08:48:25 -08:00
|
|
|
propagatedBuildInputs = [ future twisted service-identity chromalog txtorcon ];
|
2019-08-05 00:50:55 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|