2016-11-08 06:20:33 -08:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2014-03-23 08:22:57 -07:00
|
|
|
|
2016-11-08 06:20:33 -08:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2014-03-23 08:22:57 -07:00
|
|
|
name = "electrum-${version}";
|
2016-12-05 07:25:46 -08:00
|
|
|
version = "2.7.12";
|
2014-03-23 08:22:57 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-18 13:06:21 -08:00
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2016-12-05 07:25:46 -08:00
|
|
|
sha256 = "0vxdfl208if7mdsnva1jg37bnay2dsz3ww157aqwcv1j6512fi1n";
|
2014-03-23 08:22:57 -07:00
|
|
|
};
|
|
|
|
|
2016-11-08 06:20:33 -08:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2015-03-17 15:29:35 -07:00
|
|
|
dns
|
2014-03-23 08:22:57 -07:00
|
|
|
ecdsa
|
2016-03-01 10:21:07 -08:00
|
|
|
jsonrpclib
|
2015-03-17 15:29:35 -07:00
|
|
|
pbkdf2
|
2016-10-04 07:22:15 -07:00
|
|
|
protobuf3_0
|
2015-03-17 15:29:35 -07:00
|
|
|
pyasn1
|
|
|
|
pyasn1-modules
|
2015-07-26 06:37:50 -07:00
|
|
|
pycrypto
|
2014-03-23 08:22:57 -07:00
|
|
|
pyqt4
|
2015-03-17 15:29:35 -07:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
slowaes
|
|
|
|
tlslite
|
2016-01-21 14:58:28 -08:00
|
|
|
|
|
|
|
# plugins
|
|
|
|
trezor
|
|
|
|
keepkey
|
|
|
|
# TODO plugins
|
|
|
|
# matplotlib
|
|
|
|
# btchip
|
|
|
|
# amodem
|
2014-03-23 08:22:57 -07:00
|
|
|
];
|
|
|
|
|
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-12-18 12:51:36 -08:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
2014-03-23 08:22:57 -07:00
|
|
|
'';
|
|
|
|
|
2016-12-18 12:56:43 -08:00
|
|
|
postInstall = ''
|
|
|
|
# Despite setting usr_share above, these files are installed under
|
|
|
|
# $out/nix ...
|
|
|
|
mv $out/lib/python2.7/site-packages/nix/store/*/share $out
|
|
|
|
rm -rf $out/lib/python2.7/site-packages/nix
|
|
|
|
'';
|
|
|
|
|
2016-10-14 15:50:19 -07:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2016-03-10 23:26:43 -08:00
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2015-03-28 07:34:22 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-10-08 07:01:28 -07:00
|
|
|
description = "A lightweight Bitcoin wallet";
|
2015-03-28 07:34:22 -07:00
|
|
|
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;
|
2016-01-21 14:58:28 -08:00
|
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
2014-03-23 08:22:57 -07:00
|
|
|
};
|
2014-12-19 15:52:08 -08:00
|
|
|
}
|