From 573be242982f863718159ec2cb98444aaa46b142 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 24 Jul 2024 17:00:22 +0300 Subject: [PATCH] gnuradio: don't use confusing `with python.pkgs;` (in 1 place) --- pkgs/applications/radio/gnuradio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/radio/gnuradio/default.nix b/pkgs/applications/radio/gnuradio/default.nix index 9d05e1151bd8..964a4f0e2241 100644 --- a/pkgs/applications/radio/gnuradio/default.nix +++ b/pkgs/applications/radio/gnuradio/default.nix @@ -103,11 +103,11 @@ let libunwind thrift ]; - pythonRuntime = with python.pkgs; [ + pythonRuntime = [ python.pkgs.thrift # For gr-perf-monitorx - matplotlib - networkx + python.pkgs.matplotlib + python.pkgs.networkx ]; cmakeEnableFlag = "GR_CTRLPORT"; };