93 lines
2.4 KiB
Nix
93 lines
2.4 KiB
Nix
{ stdenv, fetchFromGitHub, python3, python3Packages, zbar, secp256k1 }:
|
|
|
|
let
|
|
qdarkstyle = python3Packages.buildPythonPackage rec {
|
|
pname = "QDarkStyle";
|
|
version = "2.5.4";
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1w715m1i5pycfqcpkrggpn0rs9cakx6cm5v8rggcxnf4p0i0kdiy";
|
|
};
|
|
doCheck = false; # no tests
|
|
};
|
|
in
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "electrum";
|
|
version = "3.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spesmilo";
|
|
repo = "electrum";
|
|
rev = version;
|
|
sha256 = "1jsn02azdydpq4plr2552s7ijyqgw6zqm2zx8skwsalgbwmhx12i";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
aiorpcx
|
|
aiohttp
|
|
aiohttp-socks
|
|
dnspython
|
|
ecdsa
|
|
jsonrpclib-pelix
|
|
matplotlib
|
|
pbkdf2
|
|
protobuf
|
|
pyaes
|
|
pycryptodomex
|
|
pyqt5
|
|
pysocks
|
|
qdarkstyle
|
|
qrcode
|
|
requests
|
|
tlslite-ng
|
|
|
|
# plugins
|
|
keepkey
|
|
trezor
|
|
btchip
|
|
|
|
# TODO plugins
|
|
# amodem
|
|
];
|
|
|
|
preBuild = ''
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
|
pyrcc5 icons.qrc -o electrum/gui/qt/icons_rc.py
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
sed -i '/Created: .*/d' electrum/gui/qt/icons_rc.py
|
|
sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" electrum/qrscanner.py
|
|
substituteInPlace ./electrum/ecc_fast.py --replace libsecp256k1.so.0 ${secp256k1}/lib/libsecp256k1.so.0
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Despite setting usr_share above, these files are installed under
|
|
# $out/nix ...
|
|
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"
|
|
'';
|
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
|
|
|
checkPhase = ''
|
|
py.test electrum/tests
|
|
$out/bin/electrum help >/dev/null
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
homepage = https://electrum.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
|
};
|
|
}
|