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

46 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonPackage, pythonPackages, slowaes }:
buildPythonPackage rec {
name = "electrum-${version}";
2015-10-18 15:21:22 +00:00
version = "2.5.1";
src = fetchurl {
url = "https://download.electrum.org/Electrum-${version}.tar.gz";
2015-10-18 15:21:22 +00:00
sha256 = "0wjqf2ifw1ww6iyj0h0i63zjmy0yhmzl91sgc5hc4j2x5bd2c3am";
};
propagatedBuildInputs = with pythonPackages; [
dns
ecdsa
pbkdf2
protobuf
pyasn1
pyasn1-modules
2015-07-26 13:37:50 +00:00
pycrypto
pyqt4
qrcode
requests
slowaes
tlslite
];
preInstall = ''
mkdir -p $out/share
sed -i 's@usr_share = .*@usr_share = os.getenv("out")+"/share"@' setup.py
2015-08-26 23:44:41 +00:00
pyrcc4 icons.qrc -o gui/qt/icons_rc.py
'';
meta = with stdenv.lib; {
description = "Bitcoin thin-client";
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;
license = licenses.gpl3;
maintainers = with maintainers; [ emery joachifm ];
};
}