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

88 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python3, python3Packages, zbar }:
2018-09-12 19:05:49 +00:00
let
qdarkstyle = python3Packages.buildPythonPackage rec {
pname = "QDarkStyle";
version = "2.5.4";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1w715m1i5pycfqcpkrggpn0rs9cakx6cm5v8rggcxnf4p0i0kdiy";
};
doCheck = false; # no tests
};
in
2017-11-18 17:46:35 +00:00
python3Packages.buildPythonApplication rec {
name = "electrum-${version}";
2018-09-12 19:05:49 +00:00
version = "3.2.3";
src = fetchurl {
2015-11-18 21:06:21 +00:00
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2018-09-12 19:05:49 +00:00
sha256 = "022iw4cq0c009wvqn7wd815jc0nv8198lq3cawn8h6c28hw2mhs1";
};
2017-11-18 17:46:35 +00:00
propagatedBuildInputs = with python3Packages; [
dnspython
ecdsa
2017-11-18 17:46:35 +00:00
jsonrpclib-pelix
matplotlib
pbkdf2
2017-09-05 15:11:41 +00:00
protobuf
pyaes
2018-09-12 19:05:49 +00:00
pycryptodomex
2017-11-18 17:46:35 +00:00
pyqt5
pysocks
2018-09-12 19:05:49 +00:00
qdarkstyle
qrcode
requests
tlslite
2018-09-12 19:05:49 +00:00
typing
# plugins
keepkey
trezor
# TODO plugins
# amodem
# btchip
];
2016-10-14 22:50:19 +00:00
preBuild = ''
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
2018-09-12 19:05:49 +00:00
pyrcc5 icons.qrc -o electrum/gui/qt/icons_rc.py
# Recording the creation timestamps introduces indeterminism to the build
2018-09-12 19:05:49 +00:00
sed -i '/Created: .*/d' electrum/gui/qt/icons_rc.py
sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" electrum/qrscanner.py
'';
postInstall = ''
# Despite setting usr_share above, these files are installed under
# $out/nix ...
2017-11-18 17:46:35 +00:00
mv $out/${python3.sitePackages}/nix/store"/"*/share $out
rm -rf $out/${python3.sitePackages}/nix
substituteInPlace $out/share/applications/electrum.desktop \
--replace "Exec=electrum %u" "Exec=$out/bin/electrum %u"
'';
2017-11-18 17:46:35 +00:00
doCheck = false;
2016-10-14 22:50:19 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/electrum help >/dev/null
'';
meta = with stdenv.lib; {
2016-10-08 14:01:28 +00: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 14:01:28 +00:00
homepage = https://electrum.org/;
2016-03-01 18:21:07 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ehmry joachifm np ];
};
}