nixpkgs/pkgs/applications/networking/instant-messengers/pybitmessage/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python2Packages, openssl }:
2016-01-05 22:29:11 +00:00
python2Packages.buildPythonApplication rec {
pname = "pybitmessage";
2016-01-05 22:29:11 +00:00
2018-08-05 15:21:31 +00:00
version = "0.6.3.2";
2016-01-05 22:29:11 +00:00
src = fetchFromGitHub {
owner = "bitmessage";
repo = "PyBitmessage";
2018-08-05 15:21:31 +00:00
rev = version;
sha256 = "1lmhbpwsqh1v93krlqqhafw2pc3y0qp8zby186yllbph6s8kdp35";
2016-01-05 22:29:11 +00:00
};
propagatedBuildInputs = with python2Packages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
2016-01-05 22:29:11 +00:00
preConfigure = ''
# Remove interaction and misleading output
substituteInPlace setup.py \
--replace "nothing = raw_input()" pass \
--replace 'print "It looks like building the package failed.\n" \' pass \
--replace ' "You may be missing a C++ compiler and the OpenSSL headers."' pass
2016-01-05 22:29:11 +00:00
substituteInPlace src/pyelliptic/openssl.py \
--replace "libdir.append(find_library('ssl'))" "libdir.append('${openssl.out}/lib/libssl.so')"
substituteInPlace src/depends.py \
--replace "ctypes.util.find_library('ssl')" "'${openssl.out}/lib/libssl.so'"
2016-01-05 22:29:11 +00:00
'';
meta = with stdenv.lib; {
homepage = https://bitmessage.org/;
description = "The official Bitmessage client";
license = licenses.mit;
maintainers = with maintainers; [ jgillich ];
platforms = with platforms; linux;
2016-01-05 22:29:11 +00:00
};
}