ca834cce84
Remove unused dependencies.
19 lines
525 B
Nix
19 lines
525 B
Nix
{ version, src, lib, buildPythonPackage, fetchurl, urldecode, pyaes, python-bitcointx, joinmarketbase }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "joinmarketbitcoin";
|
|
inherit version src;
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/jmbitcoin";
|
|
|
|
propagatedBuildInputs = [ urldecode pyaes python-bitcointx ];
|
|
|
|
checkInputs = [ joinmarketbase ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Joinmarket-Org/joinmarket-clientserver";
|
|
maintainers = with maintainers; [ nixbitcoin ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|