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
|
2024-01-15 18:37:58 +00:00
|
|
|
, qtwayland
|
2024-03-16 17:47:56 +00:00
|
|
|
, fetchPypi
|
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
|
2024-05-30 11:01:01 +00:00
|
|
|
version = "4.5.5";
|
2020-08-29 17:45:36 +00:00
|
|
|
|
2024-03-16 17:47:56 +00:00
|
|
|
python = python3.override {
|
|
|
|
self = python;
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
# Pin ledger-bitcoin to 0.2.1
|
|
|
|
ledger-bitcoin = super.ledger-bitcoin.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.2.1";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "ledger_bitcoin";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-AWl/q2MzzspNIo6yf30S92PgM/Ygsb+1lJsg7Asztso=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-07-11 14:08:57 +00:00
|
|
|
libsecp256k1_name =
|
2023-06-11 20:02:43 +00:00
|
|
|
if stdenv.isLinux then "libsecp256k1.so.{v}"
|
|
|
|
else if stdenv.isDarwin then "libsecp256k1.{v}.dylib"
|
2019-07-11 14:08:57 +00:00
|
|
|
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;
|
2024-05-30 11:01:01 +00:00
|
|
|
sha256 = "sha256-CbhI/q+zjk9odxuvdzpogi046FqkedJooiQwS+WAkJ8=";
|
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
|
2024-02-23 19:20:42 +00:00
|
|
|
mv ./all/tests $out
|
2019-05-09 20:30:05 +00:00
|
|
|
'';
|
|
|
|
};
|
2021-07-27 17:49:32 +00:00
|
|
|
|
2018-09-12 19:05:49 +00:00
|
|
|
in
|
|
|
|
|
2024-03-16 17:47:56 +00:00
|
|
|
python.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";
|
2024-05-30 11:01:01 +00:00
|
|
|
sha256 = "1jiagz9avkbd158pcip7p4wz0pdsxi94ndvg5p8afvshb32aqwav";
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
|
|
|
|
2019-05-09 20:30:05 +00:00
|
|
|
postUnpack = ''
|
|
|
|
# can't symlink, tests get confused
|
2024-02-23 19:20:42 +00:00
|
|
|
cp -ar ${tests} $sourceRoot/tests
|
2019-05-09 20:30:05 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
|
2024-01-18 17:07:41 +00:00
|
|
|
buildInputs = lib.optional (stdenv.isLinux && enableQt) qtwayland;
|
2019-08-29 21:30:30 +00:00
|
|
|
|
2024-03-16 17:47:56 +00:00
|
|
|
propagatedBuildInputs = with python.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
|
2024-01-15 18:37:58 +00:00
|
|
|
certifi
|
2024-01-16 20:20:00 +00:00
|
|
|
jsonpatch
|
2016-01-21 22:58:28 +00:00
|
|
|
# plugins
|
2023-03-03 18:36:49 +00:00
|
|
|
btchip-python
|
2023-04-23 23:14:35 +00:00
|
|
|
ledger-bitcoin
|
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
|
2024-03-16 17:56:46 +00:00
|
|
|
bitbox02
|
2024-05-30 11:01:01 +00:00
|
|
|
cbor2
|
2024-03-16 17:56:46 +00:00
|
|
|
pyserial
|
2021-07-27 17:49:32 +00:00
|
|
|
] ++ lib.optionals enableQt [
|
|
|
|
pyqt5
|
|
|
|
qdarkstyle
|
|
|
|
];
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2024-03-16 17:47:56 +00:00
|
|
|
checkInputs = with python.pkgs; lib.optionals enableQt [
|
2024-02-23 19:20:42 +00:00
|
|
|
pyqt6
|
|
|
|
];
|
|
|
|
|
2022-10-02 18:35:44 +00:00
|
|
|
postPatch = ''
|
|
|
|
# make compatible with protobuf4 by easing dependencies ...
|
|
|
|
substituteInPlace ./contrib/requirements/requirements.txt \
|
2023-04-24 20:37:23 +00:00
|
|
|
--replace "protobuf>=3.20,<4" "protobuf>=3.20"
|
2022-10-02 18:35:44 +00:00
|
|
|
# ... 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
|
|
|
'';
|
|
|
|
|
2024-03-16 17:47:56 +00:00
|
|
|
nativeCheckInputs = with python.pkgs; [ pytestCheckHook pyaes pycryptodomex ];
|
2020-12-09 15:39:51 +00:00
|
|
|
|
2024-02-23 19:20:42 +00:00
|
|
|
pytestFlagsArray = [ "tests" ];
|
2020-12-09 15:39:51 +00:00
|
|
|
|
|
|
|
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;
|
2024-03-16 17:40:45 +00:00
|
|
|
maintainers = with maintainers; [ joachifm np prusnak chewblacka ];
|
2024-01-18 17:11:55 +00:00
|
|
|
mainProgram = "electrum";
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
2014-12-19 23:52:08 +00:00
|
|
|
}
|