1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
{
lib,
stdenv,
fetchurl,
python3,
zbar,
enableQt ? true,
qt5,
enablePythonEcdsa ? false,
callPackage,
writableTmpDirAsHomeHook,
}:
let
libzbar_name =
if stdenv.hostPlatform.isLinux then
"libzbar.so.0"
else if stdenv.hostPlatform.isDarwin then
"libzbar.0.dylib"
else
"libzbar${stdenv.hostPlatform.extensions.sharedLibrary}";
in
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "electrum";
version = "4.8.2";
pyproject = true;
src = fetchurl {
url = "https://download.electrum.org/${finalAttrs.version}/Electrum-${finalAttrs.version}.tar.gz";
hash = "sha256-84zuMzyGaYbN+zBEKPp0h6/8Qpw4U/yA6YIr1CC7wik=";
};
build-system = [ python3.pkgs.setuptools ];
nativeBuildInputs = [
python3.pkgs.pythonRelaxDepsHook
]
++ lib.optionals enableQt [
qt5.wrapQtAppsHook
];
buildInputs = lib.optional (stdenv.hostPlatform.isLinux && enableQt) qt5.qtwayland;
dependencies =
with python3.pkgs;
[
aiohttp
aiohttp-socks
aiorpcx
attrs
bitstring
cryptography
dnspython
jsonrpclib-pelix
matplotlib
pbkdf2
protobuf
pysocks
qrcode
requests
certifi
jsonpatch
electrum-aionostr
electrum-ecc
# plugins
ledger-bitcoin
cbor2
pyserial
trezor
]
++ lib.optionals enablePythonEcdsa [
# enablePythonEcdsa gates plugins known to pull in python-ecdsa, which we
# avoid by default due to CVE-2024-23342.
ckcc-protocol
keepkey
bitbox02
]
++ lib.optionals enableQt [
pyqt6
qdarkstyle
];
pythonRelaxDeps = [
"attrs"
"dnspython"
];
pythonRemoveDeps = [
"protobuf"
];
checkInputs = lib.optionals enableQt [
python3.pkgs.pyqt6
];
disabledTestPaths = lib.optionals (!enableQt) [
"tests/test_qml_types.py"
];
postPatch =
if enableQt then
''
substituteInPlace ./electrum/qrscanner.py \
--replace-fail ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
''
else
''
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
'';
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
substituteInPlace $out/share/applications/electrum.desktop \
--replace-fail "Exec=electrum %u" "Exec=$out/bin/electrum %u" \
--replace-fail "Exec=electrum --testnet %u" "Exec=$out/bin/electrum --testnet %u"
'';
postFixup = lib.optionalString enableQt ''
wrapQtApp $out/bin/electrum
'';
preFixup = ''
makeWrapperArgs+=(--prefix PYTHONPATH : ${python3.pkgs.protobuf}/${python3.sitePackages})
''
+ lib.optionalString enableQt ''
qtWrapperArgs+=(--prefix PYTHONPATH : ${python3.pkgs.protobuf}/${python3.sitePackages})
'';
nativeCheckInputs = with python3.pkgs; [
protobuf
pytestCheckHook
pyaes
pycryptodomex
# avoid homeless-shelter error in tests
writableTmpDirAsHomeHook
];
enabledTestPaths = [ "tests" ];
preCheck = ''
export PYTHONPATH=${python3.pkgs.protobuf}/${python3.sitePackages}:$PYTHONPATH
'';
postCheck = ''
$out/bin/electrum help >/dev/null
'';
passthru.updateScript = callPackage ./update.nix { };
meta = {
description = "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/";
downloadPage = "https://electrum.org/#download";
changelog = "https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
np
prusnak
ryand56
];
mainProgram = "electrum";
};
})
|