2023-05-07 06:55:30 -07:00
|
|
|
{ version, src, lib, buildPythonPackage, fetchurl, pyaes, python-bitcointx, joinmarketbase }:
|
2019-08-05 00:50:55 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joinmarketbitcoin";
|
|
|
|
inherit version src;
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbitcoin";
|
|
|
|
|
2023-05-07 06:55:30 -07:00
|
|
|
propagatedBuildInputs = [ 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;
|
|
|
|
};
|
|
|
|
}
|