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

View file

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