2015-03-17 23:29:35 +01:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, slowaes }:
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2014-12-20 00:52:08 +01:00
|
|
|
buildPythonPackage rec {
|
2014-03-23 16:22:57 +01:00
|
|
|
name = "electrum-${version}";
|
2015-06-15 15:31:06 +02:00
|
|
|
version = "2.3.2";
|
2014-03-23 16:22:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.electrum.org/Electrum-${version}.tar.gz";
|
2015-06-15 15:31:06 +02:00
|
|
|
sha256 = "0idqm77d5rbwpw14wqg4ysvbjyqjw7zlqfcdxniy74i2qwz163bi";
|
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
|
2015-03-17 23:29:35 +01:00
|
|
|
pbkdf2
|
|
|
|
protobuf
|
|
|
|
pyasn1
|
|
|
|
pyasn1-modules
|
2014-03-23 16:22:57 +01:00
|
|
|
pyqt4
|
2015-03-17 23:29:35 +01:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
slowaes
|
|
|
|
tlslite
|
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-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;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ emery joachifm ];
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
2014-12-20 00:52:08 +01:00
|
|
|
}
|