summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/radio/uhd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix
index 1fcb0e28031f..ffc28c3480f0 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
];