93bf0a02f5
tlslite has a test failure on Python 3.7 [0]. @tomato42, a commiter of tlslite and author of tlslite-ng said, that tlslite is abandoned (last commit 2015) and tlslite-ng should be used as a drop in replacement. [0] https://github.com/trevp/tlslite/issues/121
87 lines
2.2 KiB
Nix
87 lines
2.2 KiB
Nix
{ stdenv, fetchurl, python3Packages, qtbase, makeWrapper, lib }:
|
|
|
|
let
|
|
|
|
python = python3Packages.python;
|
|
|
|
in
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
version = "3.3.1";
|
|
name = "electron-cash-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://electroncash.org/downloads/${version}/win-linux/ElectronCash-${version}.tar.gz";
|
|
# Verified using official SHA-1 and signature from
|
|
# https://github.com/fyookball/keys-n-hashes
|
|
sha256 = "1jdy89rfdwc2jadx3rqj5yvynpcn90cx6482ax9f1cj9gfxp9j2b";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
dnspython
|
|
ecdsa
|
|
jsonrpclib-pelix
|
|
matplotlib
|
|
pbkdf2
|
|
pyaes
|
|
pycrypto
|
|
pyqt5
|
|
pysocks
|
|
qrcode
|
|
requests
|
|
tlslite-ng
|
|
|
|
# plugins
|
|
keepkey
|
|
trezor
|
|
btchip
|
|
];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postPatch = ''
|
|
# Remove pyqt5 check
|
|
sed -i '/pyqt5/d' setup.py
|
|
'';
|
|
|
|
preBuild = ''
|
|
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
# These files are installed under $out/homeless-shelter ...
|
|
mv $out/${python.sitePackages}/homeless-shelter/.local/share $out
|
|
rm -rf $out/${python.sitePackages}/homeless-shelter
|
|
|
|
substituteInPlace $out/share/applications/electron-cash.desktop \
|
|
--replace "Exec=electron-cash %u" "Exec=$out/bin/electron-cash %u"
|
|
|
|
# Please remove this when #44047 is fixed
|
|
wrapProgram $out/bin/electron-cash \
|
|
--prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/electron-cash 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://www.electroncash.org/;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lassulus ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|