From 5b48a7c09a4bac4aa547bbaa1e54da4f49c59fc2 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 24 Jul 2024 16:59:49 +0300 Subject: [PATCH] gnuradio3_9: don't use confusing `with python.pkgs;` (in 1 place) --- pkgs/applications/radio/gnuradio/3.9.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/radio/gnuradio/3.9.nix b/pkgs/applications/radio/gnuradio/3.9.nix index b6a8ebd2dd8e..80be5b79c8aa 100644 --- a/pkgs/applications/radio/gnuradio/3.9.nix +++ b/pkgs/applications/radio/gnuradio/3.9.nix @@ -102,11 +102,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"; };