pybitmessage: specify python version 2
pybitmessage does not support python3 yet
This commit is contained in:
parent
28fe9047ef
commit
3bddc85171
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchFromGitHub, pythonPackages, openssl }:
|
{ stdenv, fetchFromGitHub, python2Packages, openssl }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "pybitmessage-${version}";
|
name = "pybitmessage-${version}";
|
||||||
|
|
||||||
version = "0.6.3.2";
|
version = "0.6.3.2";
|
||||||
|
@ -12,7 +12,7 @@ pythonPackages.buildPythonApplication rec {
|
||||||
sha256 = "1lmhbpwsqh1v93krlqqhafw2pc3y0qp8zby186yllbph6s8kdp35";
|
sha256 = "1lmhbpwsqh1v93krlqqhafw2pc3y0qp8zby186yllbph6s8kdp35";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
|
propagatedBuildInputs = with python2Packages; [ msgpack-python pyqt4 numpy pyopencl ] ++ [ openssl ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
# Remove interaction and misleading output
|
# Remove interaction and misleading output
|
||||||
|
|
Loading…
Reference in New Issue