summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/radio/uhd
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-03-09 15:41:35 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2020-04-05 10:35:22 +0200
commitfd2c3ff812f9a36ed83cb5569d6e2d1dc33b8e2a (patch)
tree280a25f9e37018163ac48e3e006e07c0f74e8580 /pkgs/applications/radio/uhd
parent9723ccbc343fa631d3fc0871238b6b75944b1cf1 (diff)
uhd: Remove python six and requests unneeded deps (tested)
Diffstat (limited to 'pkgs/applications/radio/uhd')
-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
];