2022-05-05 11:43:08 -07:00
|
|
|
{ version, src, lib, buildPythonPackage, fetchurl, urldecode, pyaes, python-bitcointx, joinmarketbase }:
|
2019-08-05 00:50:55 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joinmarketbitcoin";
|
|
|
|
inherit version src;
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbitcoin";
|
|
|
|
|
2022-05-05 11:43:08 -07:00
|
|
|
propagatedBuildInputs = [ urldecode pyaes python-bitcointx ];
|
2019-08-05 00:50:55 -07:00
|
|
|
|
|
|
|
checkInputs = [ joinmarketbase ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|