2015-03-17 22:29:35 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, slowaes }:
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2014-12-19 23:52:08 +00:00
|
|
|
buildPythonPackage rec {
|
2014-03-23 15:22:57 +00:00
|
|
|
name = "electrum-${version}";
|
2015-07-26 14:37:50 +01:00
|
|
|
version = "2.4";
|
2014-03-23 15:22:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.electrum.org/Electrum-${version}.tar.gz";
|
2015-08-16 11:04:33 +01:00
|
|
|
sha256 = "0y04m5b410y3s9vqvkbvmlvvx1nr0cyvrnl41yapz8hydw9vdkjx";
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
|
|
|
|
2015-03-17 22:29:35 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
dns
|
2014-03-23 15:22:57 +00:00
|
|
|
ecdsa
|
2015-03-17 22:29:35 +00:00
|
|
|
pbkdf2
|
|
|
|
protobuf
|
|
|
|
pyasn1
|
|
|
|
pyasn1-modules
|
2015-07-26 14:37:50 +01:00
|
|
|
pycrypto
|
2014-03-23 15:22:57 +00:00
|
|
|
pyqt4
|
2015-03-17 22:29:35 +00:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
slowaes
|
|
|
|
tlslite
|
2014-03-23 15:22:57 +00:00
|
|
|
];
|
|
|
|
|
2015-03-28 14:34:22 +00:00
|
|
|
preInstall = ''
|
2014-03-23 15:22:57 +00:00
|
|
|
mkdir -p $out/share
|
|
|
|
sed -i 's@usr_share = .*@usr_share = os.getenv("out")+"/share"@' setup.py
|
|
|
|
'';
|
|
|
|
|
2015-03-28 14:34:22 +00: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 15:22:57 +00:00
|
|
|
};
|
2014-12-19 23:52:08 +00:00
|
|
|
}
|