doclifter: avoid 2to3

+4 -2
+4 -2
pkgs/by-name/do/doclifter/package.nix
··· 18 19 postPatch = '' 20 substituteInPlace manlifter \ 21 - --replace-fail '/usr/bin/env python2' '/usr/bin/env python3' 22 - 2to3 -w manlifter 23 ''; 24 25 nativeBuildInputs = [
··· 18 19 postPatch = '' 20 substituteInPlace manlifter \ 21 + --replace-fail '/usr/bin/env python2' '/usr/bin/env python3' \ 22 + --replace-fail 'import thread, threading, Queue' 'import _thread, threading, queue' \ 23 + --replace-fail 'thread.get_ident' '_thread.get_ident' \ 24 + --replace-fail 'Queue.Queue' 'queue.Queue' 25 ''; 26 27 nativeBuildInputs = [