python3Packages.pwntools: disable update checking (#447428)

Changed files
+4
pkgs
development
python-modules
pwntools
+4
pkgs/development/python-modules/pwntools/default.nix
···
# Upstream hardcoded the check for the command `gdb-multiarch`;
# Forcefully use the provided debugger as `gdb`.
sed -i 's/gdb-multiarch/${debuggerName}/' pwnlib/gdb.py
+
+
# Disable update checks
+
substituteInPlace pwnlib/update.py \
+
--replace-fail 'disabled = False' 'disabled = True'
'';
nativeBuildInputs = [ installShellFiles ];