gnuradio: Add missing runtime python packages

Although they are not detected as missing during build.
This commit is contained in:
Doron Behar 2021-10-21 11:31:30 +03:00
parent a7851a7a96
commit 6e552641b7
2 changed files with 24 additions and 0 deletions

View file

@ -107,6 +107,11 @@ let
native = [
swig
];
pythonRuntime = with python.pkgs; [
# For gr-perf-monitorx
matplotlib
networkx
];
};
gnuradio-companion = {
pythonRuntime = with python.pkgs; [
@ -170,9 +175,14 @@ let
};
gr-utils = {
cmakeEnableFlag = "GR_UTILS";
pythonRuntime = with python.pkgs; [
# For gr_plot
matplotlib
];
};
gr-modtool = {
pythonRuntime = with python.pkgs; [
setuptools
click
click-plugins
];

View file

@ -105,6 +105,11 @@ let
runtime = [
libunwind
];
pythonRuntime = with python.pkgs; [
# For gr-perf-monitorx
matplotlib
networkx
];
cmakeEnableFlag = "GR_CTRLPORT";
};
gnuradio-companion = {
@ -139,6 +144,10 @@ let
gr-filter = {
runtime = [ fftwFloat ];
cmakeEnableFlag = "GR_FILTER";
pythonRuntime = with python.pkgs; [
scipy
pyqtgraph
];
};
gr-analog = {
cmakeEnableFlag = "GR_ANALOG";
@ -181,9 +190,14 @@ let
};
gr-utils = {
cmakeEnableFlag = "GR_UTILS";
pythonRuntime = with python.pkgs; [
# For gr_plot
matplotlib
];
};
gr-modtool = {
pythonRuntime = with python.pkgs; [
setuptools
click
click-plugins
];