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
|
2022-12-15 21:59:09 +00:00
|
|
|
, callPackage
|
2019-05-17 10:29:44 +00:00
|
|
|
}:
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2018-09-12 19:05:49 +00:00
|
|
|
let
|
2023-01-28 20:44:08 +00:00
|
|
|
version = "4.3.4";
|
2020-08-29 17:45:36 +00:00
|
|
|
|
2019-07-11 14:08:57 +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"
|
2022-08-06 10:54:15 +00:00
|
|
|
else if stdenv.isDarwin then "libzbar.0.dylib"
|
2019-07-11 14:08:57 +00:00
|
|
|
else "libzbar${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
|
|
|
2019-05-09 20:30:05 +00:00
|
|
|
# Not provided in official source releases, which are what upstream signs.
|
|
|
|
tests = fetchFromGitHub {
|
|
|
|
owner = "spesmilo";
|
|
|
|
repo = "electrum";
|
|
|
|
rev = version;
|
2023-01-28 20:44:08 +00:00
|
|
|
sha256 = "sha256-0xYGTCk+Sk7LP+E9r2Y7UJZsfbobLe6Yb+x5ZRCN40Y=";
|
2019-05-09 20:30:05 +00:00
|
|
|
|
2022-05-17 19:10:33 +00:00
|
|
|
postFetch = ''
|
2019-05-09 20:30:05 +00:00
|
|
|
mv $out ./all
|
|
|
|
mv ./all/electrum/tests $out
|
|
|
|
'';
|
|
|
|
};
|
2021-07-27 17:49:32 +00:00
|
|
|
|
2018-09-12 19:05:49 +00:00
|
|
|
in
|
|
|
|
|
2020-12-09 15:39:51 +00:00
|
|
|
python3.pkgs.buildPythonApplication {
|
2019-01-21 11:47:05 +00:00
|
|
|
pname = "electrum";
|
2019-05-09 20:30:05 +00:00
|
|
|
inherit version;
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2019-05-09 20:12:50 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2023-01-28 20:44:08 +00:00
|
|
|
sha256 = "sha256-+Z4NZK/unFN6mxCuMleHBxAoD+U1PzVk3/ZnZRmOOxo=";
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
|
|
|
|
2019-05-09 20:30:05 +00:00
|
|
|
postUnpack = ''
|
|
|
|
# can't symlink, tests get confused
|
|
|
|
cp -ar ${tests} $sourceRoot/electrum/tests
|
|
|
|
'';
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
|
2019-08-29 21:30:30 +00:00
|
|
|
|
2022-03-16 17:06:14 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2019-01-21 11:47:05 +00:00
|
|
|
aiohttp
|
|
|
|
aiohttp-socks
|
2020-06-25 11:49:27 +00:00
|
|
|
aiorpcx
|
|
|
|
attrs
|
|
|
|
bitstring
|
2020-12-09 15:39:51 +00:00
|
|
|
cryptography
|
2017-12-10 14:27:06 +00:00
|
|
|
dnspython
|
2017-11-18 17:46:35 +00:00
|
|
|
jsonrpclib-pelix
|
2017-10-19 19:19:58 +00:00
|
|
|
matplotlib
|
2015-03-17 22:29:35 +00:00
|
|
|
pbkdf2
|
2017-09-05 15:11:41 +00:00
|
|
|
protobuf
|
2017-03-11 13:00:59 +00:00
|
|
|
pysocks
|
2015-03-17 22:29:35 +00:00
|
|
|
qrcode
|
|
|
|
requests
|
2018-12-07 14:29:24 +00:00
|
|
|
tlslite-ng
|
2016-01-21 22:58:28 +00:00
|
|
|
# plugins
|
2023-03-03 18:36:49 +00:00
|
|
|
btchip-python
|
2019-08-11 22:09:17 +00:00
|
|
|
ckcc-protocol
|
2016-01-21 22:58:28 +00:00
|
|
|
keepkey
|
2017-03-11 13:00:59 +00:00
|
|
|
trezor
|
2021-07-27 17:49:32 +00:00
|
|
|
] ++ lib.optionals enableQt [
|
|
|
|
pyqt5
|
|
|
|
qdarkstyle
|
|
|
|
];
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2022-10-02 18:35:44 +00:00
|
|
|
postPatch = ''
|
|
|
|
# make compatible with protobuf4 by easing dependencies ...
|
|
|
|
substituteInPlace ./contrib/requirements/requirements.txt \
|
|
|
|
--replace "protobuf>=3.12,<4" "protobuf>=3.12"
|
|
|
|
# ... and regenerating the paymentrequest_pb2.py file
|
|
|
|
protoc --python_out=. electrum/paymentrequest.proto
|
|
|
|
|
2019-07-11 14:08:57 +00:00
|
|
|
substituteInPlace ./electrum/ecc_fast.py \
|
|
|
|
--replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
|
|
|
|
'' + (if enableQt then ''
|
|
|
|
substituteInPlace ./electrum/qrscanner.py \
|
2019-06-23 11:39:01 +00:00
|
|
|
--replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
|
2019-07-11 14:08:57 +00:00
|
|
|
'' else ''
|
|
|
|
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
|
|
|
|
'');
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2017-03-11 13:00:59 +00:00
|
|
|
substituteInPlace $out/share/applications/electrum.desktop \
|
2019-05-09 20:24:21 +00:00
|
|
|
--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
|
2016-12-18 20:56:43 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook pyaes pycryptodomex ];
|
2020-12-09 15:39:51 +00:00
|
|
|
|
|
|
|
pytestFlagsArray = [ "electrum/tests" ];
|
|
|
|
|
|
|
|
postCheck = ''
|
2016-03-11 07:26:43 +00:00
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2022-12-15 21:59:09 +00:00
|
|
|
passthru.updateScript = callPackage ./update.nix { };
|
2019-05-17 10:29:44 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-12-26 14:14:26 +00:00
|
|
|
description = "Lightweight Bitcoin wallet";
|
2015-03-28 14:34:22 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
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;
|
2019-07-11 14:08:57 +00:00
|
|
|
platforms = platforms.all;
|
2021-03-23 09:20:20 +00:00
|
|
|
maintainers = with maintainers; [ joachifm np prusnak ];
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
2014-12-19 23:52:08 +00:00
|
|
|
}
|