gnuradio: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-18 17:53:31 +02:00
parent 216a906ed1
commit 0c82702f66
4 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@
# python wrappers
, python, swig2, numpy, scipy, matplotlib
# grc - the gnu radio companion
, cheetahTemplate, pygtk
, cheetah, pygtk
# gr-wavelet: collection of wavelet blocks
, gsl
# gr-qtgui: the Qt-based GUI
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
];
propagatedBuildInputs = [
cheetahTemplate numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
cheetah numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
];
enableParallelBuilding = true;

View File

@ -29,7 +29,6 @@ doNotDisplayTwice rec {
btrfsProgs = btrfs-progs; # added 2016-01-03
bundler_HEAD = bundler; # added 2015-11-15
checkbashism = checkbashisms; # added 2016-08-16
cheetahTemplate = pythonPackages.cheetah; # 2015-06-15
cifs_utils = cifs-utils; # added 2016-08
clangAnalyzer = clang-analyzer; # added 2015-02-20
clawsMail = claws-mail; # added 2016-04-29

View File

@ -12721,11 +12721,12 @@ in
gksu = callPackage ../applications/misc/gksu { };
gnuradio = callPackage ../applications/misc/gnuradio {
inherit (pythonPackages) lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
inherit (python2Packages) cheetah lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
fftw = fftwFloat;
};
gnuradio-with-packages = callPackage ../applications/misc/gnuradio/wrapper.nix {
inherit (python2Packages) python;
extraPackages = [ gnuradio-nacl gnuradio-osmosdr gnuradio-gsm gnuradio-ais gnuradio-rds ];
};

View File

@ -25966,6 +25966,7 @@ in {
wxPython = self.wxPython30;
wxPython30 = callPackage ../development/python-modules/wxPython/3.0.nix {
pythonPackages = self;
wxGTK = pkgs.wxGTK30;
};