From fd2c3ff812f9a36ed83cb5569d6e2d1dc33b8e2a Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 9 Mar 2020 15:41:35 +0200 Subject: [PATCH] uhd: Remove python six and requests unneeded deps (tested) --- pkgs/applications/radio/uhd/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix index 1fcb0e28031..ffc28c3480f 100644 --- a/pkgs/applications/radio/uhd/default.nix +++ b/pkgs/applications/radio/uhd/default.nix @@ -45,9 +45,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig + # Python + Mako are always required for the build itself but not necessary for runtime + (python.withPackages (ps: with ps; [ Mako ])) ]; buildInputs = [ - (python.withPackages (ps: with ps; [ Mako six requests ])) libusb1 boost ];