doclifter: avoid 2to3

+4 -2
+4 -2
pkgs/by-name/do/doclifter/package.nix
··· 18 18 19 19 postPatch = '' 20 20 substituteInPlace manlifter \ 21 - --replace-fail '/usr/bin/env python2' '/usr/bin/env python3' 22 - 2to3 -w 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' 23 25 ''; 24 26 25 27 nativeBuildInputs = [