blueman: fix python wrapper mockup

Changed files
+4 -3
pkgs
tools
bluetooth
blueman
+4 -3
pkgs/tools/bluetooth/blueman/default.nix
···
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
-
preFixup = ''
makeWrapperArgs="--prefix PATH ':' ${binPath}"
-
wrapPythonProgramsIn "$out/bin" "$pythonPath"
-
wrapPythonProgramsIn "$out/libexec" "$pythonPath"
'';
meta = with lib; {
···
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
+
postFixup = ''
makeWrapperArgs="--prefix PATH ':' ${binPath}"
+
# This mimics ../../../development/interpreters/python/wrap.sh
+
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
+
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
'';
meta = with lib; {