2016-03-01 19:21:07 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2016-03-01 19:21:07 +01:00
|
|
|
let
|
|
|
|
jsonrpclib = pythonPackages.buildPythonPackage rec {
|
|
|
|
version = "0.1.7";
|
|
|
|
name = "jsonrpclib-${version}";
|
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/j/jsonrpclib/${name}.tar.gz";
|
2016-03-01 19:21:07 +01:00
|
|
|
sha256 = "02vgirw2bcgvpcxhv5hf3yvvb4h5wzd1lpjx8na5psdmaffj6l3z";
|
|
|
|
};
|
|
|
|
propagatedBuildInputs = [ pythonPackages.cjson ];
|
|
|
|
meta = {
|
|
|
|
homepage = https://pypi.python.org/pypi/jsonrpclib;
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2014-03-23 16:22:57 +01:00
|
|
|
name = "electrum-${version}";
|
2016-04-15 17:09:56 +02:00
|
|
|
version = "2.6.4";
|
2014-03-23 16:22:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-18 22:06:21 +01:00
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2016-04-15 17:09:56 +02:00
|
|
|
sha256 = "0rpqpspmrmgm0bhsnlnhlwhag6zg8hnv5bcw5vkqmv86891kpd9a";
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
|
|
|
|
2015-03-17 23:29:35 +01:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
dns
|
2014-03-23 16:22:57 +01:00
|
|
|
ecdsa
|
2016-03-01 19:21:07 +01:00
|
|
|
jsonrpclib
|
2015-03-17 23:29:35 +01:00
|
|
|
pbkdf2
|
|
|
|
protobuf
|
|
|
|
pyasn1
|
|
|
|
pyasn1-modules
|
2015-07-26 15:37:50 +02:00
|
|
|
pycrypto
|
2014-03-23 16:22:57 +01:00
|
|
|
pyqt4
|
2015-03-17 23:29:35 +01:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
slowaes
|
|
|
|
tlslite
|
2016-01-21 23:58:28 +01:00
|
|
|
|
|
|
|
# plugins
|
|
|
|
trezor
|
|
|
|
keepkey
|
|
|
|
# TODO plugins
|
|
|
|
# matplotlib
|
|
|
|
# btchip
|
|
|
|
# amodem
|
2014-03-23 16:22:57 +01:00
|
|
|
];
|
|
|
|
|
2015-03-28 15:34:22 +01:00
|
|
|
preInstall = ''
|
2014-03-23 16:22:57 +01:00
|
|
|
mkdir -p $out/share
|
|
|
|
sed -i 's@usr_share = .*@usr_share = os.getenv("out")+"/share"@' setup.py
|
2015-08-27 01:44:41 +02:00
|
|
|
pyrcc4 icons.qrc -o gui/qt/icons_rc.py
|
2014-03-23 16:22:57 +01:00
|
|
|
'';
|
|
|
|
|
2016-03-11 08:26:43 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2015-03-28 15:34:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Bitcoin thin-client";
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = https://electrum.org;
|
2016-03-01 19:21:07 +01:00
|
|
|
license = licenses.mit;
|
2016-01-21 23:58:28 +01:00
|
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
2014-12-20 00:52:08 +01:00
|
|
|
}
|