lol

pythonPackages.pyrtlsdr: unbreak build

pyrtlsdr needs pandoc at build time. Fixes the build since commit
f6eb190e7030feac015bd1624d0dbb6825e28a9e
("python.pkgs.pyrtlsdr: disable tests to fix build"). (That commit
bumped the package to a new version.)

+4
+4
pkgs/development/python-modules/pyrtlsdr/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , rtl-sdr 5 + , pypandoc 6 + , pandoc 5 7 }: 6 8 7 9 buildPythonPackage rec { ··· 13 15 inherit pname version; 14 16 sha256 = "dd041143b68628c713c2227c78c40b0b4a0cb5d08df116f7bdc5f83c529be0e4"; 15 17 }; 18 + 19 + buildInputs = [ pypandoc pandoc ]; 16 20 17 21 postPatch = '' 18 22 sed "s|driver_files =.*|driver_files = ['${rtl-sdr}/lib/librtlsdr.so']|" -i rtlsdr/librtlsdr.py