nixpkgs/pkgs/applications/misc/electrum/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

167 lines
4.4 KiB
Nix
Raw Normal View History

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
, qtwayland
2024-03-16 17:47:56 +00:00
, fetchPypi
}:
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=";
};
});
};
};
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"
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
libzbar_name =
if stdenv.isLinux then "libzbar.so.0"
else if stdenv.isDarwin then "libzbar.0.dylib"
else "libzbar${stdenv.hostPlatform.extensions.sharedLibrary}";
# 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=";
2022-05-17 19:10:33 +00:00
postFetch = ''
mv $out ./all
2024-02-23 19:20:42 +00:00
mv ./all/tests $out
'';
};
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 {
pname = "electrum";
inherit version;
src = fetchurl {
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2024-05-30 11:01:01 +00:00
sha256 = "1jiagz9avkbd158pcip7p4wz0pdsxi94ndvg5p8afvshb32aqwav";
};
postUnpack = ''
# can't symlink, tests get confused
2024-02-23 19:20:42 +00:00
cp -ar ${tests} $sourceRoot/tests
'';
2021-01-15 05:42:41 +00:00
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
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; [
aiohttp
aiohttp-socks
2020-06-25 11:49:27 +00:00
aiorpcx
attrs
bitstring
cryptography
dnspython
2017-11-18 17:46:35 +00:00
jsonrpclib-pelix
matplotlib
pbkdf2
2017-09-05 15:11:41 +00:00
protobuf
pysocks
qrcode
requests
tlslite-ng
certifi
2024-01-16 20:20:00 +00:00
jsonpatch
# plugins
btchip-python
ledger-bitcoin
ckcc-protocol
keepkey
trezor
bitbox02
2024-05-30 11:01:01 +00:00
cbor2
pyserial
2021-07-27 17:49:32 +00:00
] ++ lib.optionals enableQt [
pyqt5
qdarkstyle
];
2024-03-16 17:47:56 +00:00
checkInputs = with python.pkgs; lib.optionals enableQt [
2024-02-23 19:20:42 +00:00
pyqt6
];
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"
# ... and regenerating the paymentrequest_pb2.py file
protoc --python_out=. electrum/paymentrequest.proto
substituteInPlace ./electrum/ecc_fast.py \
--replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
'' + (if enableQt then ''
substituteInPlace ./electrum/qrscanner.py \
--replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
'' else ''
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
'');
2021-01-15 05:42:41 +00:00
postInstall = lib.optionalString stdenv.isLinux ''
substituteInPlace $out/share/applications/electrum.desktop \
--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
'';
2024-03-16 17:47:56 +00:00
nativeCheckInputs = with python.pkgs; [ pytestCheckHook pyaes pycryptodomex ];
2024-02-23 19:20:42 +00:00
pytestFlagsArray = [ "tests" ];
postCheck = ''
$out/bin/electrum help >/dev/null
'';
2022-12-15 21:59:09 +00:00
passthru.updateScript = callPackage ./update.nix { };
meta = with lib; {
2022-12-26 14:14:26 +00:00
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/";
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;
platforms = platforms.all;
maintainers = with maintainers; [ joachifm np prusnak chewblacka ];
mainProgram = "electrum";
};
}