nixpkgs/pkgs/applications/misc/electrum/default.nix

59 lines
1.3 KiB
Nix
Raw Normal View History

2016-11-08 06:20:33 -08:00
{ stdenv, fetchurl, python2Packages }:
2016-11-08 06:20:33 -08:00
python2Packages.buildPythonApplication rec {
name = "electrum-${version}";
2016-10-28 18:03:22 -07:00
version = "2.7.11";
src = fetchurl {
2015-11-18 13:06:21 -08:00
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2016-10-28 18:03:22 -07:00
sha256 = "0qy2ynyw57jgi7fw3xzsyy608yk4bhsda7qfw0j26zqinv52mrsb";
};
2016-11-08 06:20:33 -08:00
propagatedBuildInputs = with python2Packages; [
dns
ecdsa
2016-03-01 10:21:07 -08:00
jsonrpclib
pbkdf2
protobuf3_0
pyasn1
pyasn1-modules
2015-07-26 06:37:50 -07:00
pycrypto
pyqt4
qrcode
requests
slowaes
tlslite
# plugins
trezor
keepkey
# TODO plugins
# matplotlib
# btchip
# amodem
];
2016-10-14 15:50:19 -07:00
preBuild = ''
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
2015-08-26 16:44:41 -07:00
pyrcc4 icons.qrc -o gui/qt/icons_rc.py
'';
2016-10-14 15:50:19 -07:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/electrum help >/dev/null
'';
meta = with stdenv.lib; {
2016-10-08 07:01:28 -07:00
description = "A lightweight Bitcoin wallet";
longDescription = ''
An easy-to-use Bitcoin client featuring wallets generated from
mnemonic seeds (in addition to other, more advanced, wallet options)
and the ability to perform transactions without downloading a copy
of the blockchain.
'';
2016-10-08 07:01:28 -07:00
homepage = https://electrum.org/;
2016-03-01 10:21:07 -08:00
license = licenses.mit;
maintainers = with maintainers; [ ehmry joachifm np ];
};
}