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

164 lines
4.1 KiB
Nix
Raw Normal View History

2021-04-02 20:26:03 +00:00
{ lib
, stdenv
2020-06-25 11:49:27 +00:00
, fetchurl
, fetchFromGitHub
, wrapQtAppsHook
, python3
, zbar
, secp256k1
, enableQt ? true
# for updater.nix
, writeScript
, common-updater-scripts
, bash
, coreutils
, curl
, gnugrep
, gnupg
, gnused
, nix
}:
2018-09-12 19:05:49 +00:00
let
2021-07-20 13:44:02 +00:00
version = "4.1.5";
2020-08-29 17:45:36 +00:00
libsecp256k1_name =
if stdenv.isLinux then "libsecp256k1.so.0"
else if stdenv.isDarwin then "libsecp256k1.0.dylib"
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
libzbar_name =
if stdenv.isLinux then "libzbar.so.0"
else "libzbar${stdenv.hostPlatform.extensions.sharedLibrary}";
# Not provided in official source releases, which are what upstream signs.
tests = fetchFromGitHub {
owner = "spesmilo";
repo = "electrum";
rev = version;
2021-07-20 13:44:02 +00:00
sha256 = "1ps8yaps5kfd7yv7bpdvssbwm6f5qivxcvhwn17cpddc2760a7nk";
extraPostFetch = ''
mv $out ./all
mv ./all/electrum/tests $out
'';
};
2018-09-12 19:05:49 +00:00
in
python3.pkgs.buildPythonApplication {
pname = "electrum";
inherit version;
src = fetchurl {
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2021-07-20 13:44:02 +00:00
sha256 = "188r4zji985z8pm9b942xhmvv174yndk6jxagxl7ljk03wl2wiwi";
};
postUnpack = ''
# can't symlink, tests get confused
cp -ar ${tests} $sourceRoot/electrum/tests
'';
2021-04-26 15:50:01 +00:00
prePatch = ''
substituteInPlace contrib/requirements/requirements.txt \
--replace "dnspython>=2.0,<2.1" "dnspython>=2.0"
'';
2021-01-15 05:42:41 +00:00
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
2019-08-29 21:30:30 +00:00
propagatedBuildInputs = with python3.pkgs; [
aiohttp
aiohttp-socks
2020-06-25 11:49:27 +00:00
aiorpcx
attrs
bitstring
cryptography
dnspython
2017-11-18 17:46:35 +00:00
jsonrpclib-pelix
matplotlib
pbkdf2
2017-09-05 15:11:41 +00:00
protobuf
pysocks
qrcode
requests
tlslite-ng
# plugins
2021-04-02 20:26:03 +00:00
btchip
ckcc-protocol
keepkey
trezor
2021-01-15 05:42:41 +00:00
] ++ lib.optionals enableQt [ pyqt5 qdarkstyle ];
2016-10-14 22:50:19 +00:00
preBuild = ''
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
substituteInPlace ./electrum/ecc_fast.py \
--replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
'' + (if enableQt then ''
substituteInPlace ./electrum/qrscanner.py \
--replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
'' else ''
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
'');
2021-01-15 05:42:41 +00:00
postInstall = lib.optionalString stdenv.isLinux ''
# 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-08-29 21:30:30 +00:00
'';
2021-01-15 05:42:41 +00:00
postFixup = lib.optionalString enableQt ''
2019-08-29 21:30:30 +00:00
wrapQtApp $out/bin/electrum
'';
2021-04-02 20:26:03 +00:00
checkInputs = with python3.pkgs; [ pytestCheckHook pyaes pycryptodomex ];
pytestFlagsArray = [ "electrum/tests" ];
disabledTests = [
"test_loop" # test tries to bind 127.0.0.1 causing permission error
];
2017-11-18 17:46:35 +00:00
postCheck = ''
$out/bin/electrum help >/dev/null
'';
passthru.updateScript = import ./update.nix {
2021-01-27 05:44:43 +00:00
inherit lib;
inherit
writeScript
common-updater-scripts
bash
coreutils
curl
gnupg
gnugrep
gnused
nix
;
};
meta = with 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.
'';
homepage = "https://electrum.org/";
2021-07-20 13:44:02 +00:00
downloadPage = "https://electrum.org/#download";
changelog = "https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES";
2016-03-01 18:21:07 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ joachifm np prusnak ];
};
}