nixpkgs/pkgs/applications/misc/electron-cash/default.nix

90 lines
2.2 KiB
Nix
Raw Normal View History

2020-09-09 22:27:30 +00:00
{ lib, fetchFromGitHub, python3Packages, qtbase, fetchpatch, wrapQtAppsHook
, secp256k1 }:
2017-09-27 15:44:35 +00:00
2017-12-13 19:55:40 +00:00
python3Packages.buildPythonApplication rec {
pname = "electron-cash";
2020-10-26 23:06:52 +00:00
version = "4.2.0";
2017-09-27 15:44:35 +00:00
2019-12-02 22:30:55 +00:00
src = fetchFromGitHub {
owner = "Electron-Cash";
repo = "Electron-Cash";
rev = version;
2020-10-26 23:06:52 +00:00
sha256 = "0ixsx4224jilc5zis6wbsbxqxv10mm5sksrzq15xp30zz0bzb6md";
2017-09-27 15:44:35 +00:00
};
2017-12-13 19:55:40 +00:00
propagatedBuildInputs = with python3Packages; [
dnspython
2017-09-27 15:44:35 +00:00
ecdsa
2017-12-13 19:55:40 +00:00
jsonrpclib-pelix
matplotlib
2017-09-27 15:44:35 +00:00
pbkdf2
pyaes
pycrypto
2017-12-13 19:55:40 +00:00
pyqt5
2017-09-27 15:44:35 +00:00
pysocks
qrcode
requests
tlslite-ng
qdarkstyle
2020-03-28 12:17:08 +00:00
stem
2017-09-27 15:44:35 +00:00
# plugins
keepkey
trezor
btchip
2017-09-27 15:44:35 +00:00
];
nativeBuildInputs = [ wrapQtAppsHook ];
2018-09-12 16:03:36 +00:00
2018-01-07 20:35:58 +00:00
postPatch = ''
substituteInPlace contrib/requirements/requirements.txt \
--replace "qdarkstyle==2.6.8" "qdarkstyle<3"
2018-01-07 20:35:58 +00:00
substituteInPlace setup.py \
--replace "(share_dir" "(\"share\""
2017-09-27 15:44:35 +00:00
'';
2020-09-09 22:27:30 +00:00
checkInputs = with python3Packages; [ pytest ];
2019-05-02 23:17:58 +00:00
checkPhase = ''
unset HOME
2020-10-26 23:06:52 +00:00
pytest electroncash/tests
2019-05-02 23:17:58 +00:00
'';
2017-12-13 19:55:40 +00:00
2017-09-27 15:44:35 +00:00
postInstall = ''
substituteInPlace $out/share/applications/electron-cash.desktop \
--replace "Exec=electron-cash" "Exec=$out/bin/electron-cash"
2017-09-27 15:44:35 +00:00
'';
2020-03-28 12:17:08 +00:00
# If secp256k1 wasn't added to the library path, the following warning is given:
#
# Electron Cash was unable to find the secp256k1 library on this system.
# Elliptic curve cryptography operations will be performed in slow
# Python-only mode.
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
makeWrapperArgs+=(
"--prefix" "LD_LIBRARY_PATH" ":" "${secp256k1}/lib"
)
2019-09-26 14:23:57 +00:00
'';
2017-09-27 15:44:35 +00:00
doInstallCheck = true;
installCheckPhase = ''
2018-09-12 16:03:36 +00:00
$out/bin/electron-cash help >/dev/null
2017-09-27 15:44:35 +00:00
'';
meta = with lib; {
description = "A Bitcoin Cash SPV Wallet";
2017-09-27 15:44:35 +00:00
longDescription = ''
An easy-to-use Bitcoin Cash client featuring wallets generated from
2017-09-27 15:44:35 +00:00
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://www.electroncash.org/";
platforms = platforms.linux;
maintainers = with maintainers; [ lassulus nyanloutre ];
2017-09-27 15:44:35 +00:00
license = licenses.mit;
};
}