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