Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

uhd: mention buggy usrp_hwd.py utility

+12
+12
pkgs/applications/radio/uhd/default.nix
··· 68 68 ] ++ optionals (enableUtils) [ 69 69 python3.pkgs.requests 70 70 python3.pkgs.six 71 + 72 + /* These deps are needed for the usrp_hwd.py utility, however even if they 73 + would have been added here, the utility wouldn't have worked because it 74 + depends on an old python library mprpc that is not supported for Python > 75 + 3.8. See also report upstream: 76 + https://github.com/EttusResearch/uhd/issues/744 77 + 78 + python3.pkgs.gevent 79 + python3.pkgs.pyudev 80 + python3.pkgs.pyroute2 81 + 82 + */ 71 83 ]; 72 84 passthru = { 73 85 runtimePython = python3.withPackages (ps: finalAttrs.pythonPath);