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

101 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchFromGitHub, python3, python3Packages, zbar, secp256k1 }:
2018-09-12 20:05:49 +01:00
let
version = "3.3.5";
# Not provided in official source releases, which are what upstream signs.
tests = fetchFromGitHub {
owner = "spesmilo";
repo = "electrum";
rev = version;
sha256 = "11rzzrv5xxqazcb7q1ig93d6cisqmd1x0jrgvfgzysbzvi51gg11";
extraPostFetch = ''
mv $out ./all
mv ./all/electrum/tests $out
'';
};
2018-09-12 20:05:49 +01:00
in
2017-11-18 17:46:35 +00:00
python3Packages.buildPythonApplication rec {
pname = "electrum";
inherit version;
src = fetchurl {
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
sha256 = "1csj0n96zlajnrs39wsazfj5lmy7v7n77cdz56lr8nkmchh6k9z1";
};
postUnpack = ''
# can't symlink, tests get confused
cp -ar ${tests} $sourceRoot/electrum/tests
'';
2017-11-18 17:46:35 +00:00
propagatedBuildInputs = with python3Packages; [
aiorpcx
aiohttp
aiohttp-socks
dnspython
ecdsa
2017-11-18 17:46:35 +00:00
jsonrpclib-pelix
matplotlib
pbkdf2
2017-09-05 16:11:41 +01:00
protobuf
pyaes
2018-09-12 20:05:49 +01:00
pycryptodomex
2017-11-18 17:46:35 +00:00
pyqt5
pysocks
2018-09-12 20:05:49 +01:00
qdarkstyle
qrcode
requests
tlslite-ng
# plugins
keepkey
trezor
btchip
# TODO plugins
# amodem
];
2016-10-14 23:50:19 +01:00
preBuild = ''
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
2018-09-12 20:05:49 +01:00
sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" electrum/qrscanner.py
2019-01-22 14:36:08 +00:00
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 ...
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=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum %u"' \
"Exec=$out/bin/electrum %u" \
--replace 'Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum --testnet %u"' \
"Exec=$out/bin/electrum --testnet %u"
'';
2019-01-22 14:36:08 +00:00
checkInputs = with python3Packages; [ pytest ];
2017-11-18 17:46:35 +00:00
2019-01-22 14:36:08 +00:00
checkPhase = ''
py.test electrum/tests
$out/bin/electrum help >/dev/null
'';
meta = with stdenv.lib; {
2016-10-08 15:01:28 +01: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 15:01:28 +01:00
homepage = https://electrum.org/;
2016-03-01 18:21:07 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ehmry joachifm np ];
};
}