Loading
python3Packages.wfuzz: add netaddr to runtime dependencies
The iprange and ipnet payload plugins (src/wfuzz/plugins/payloads/
{iprange,ipnet}.py) lazily import netaddr and, on ImportError, raise
FuzzExceptBadInstall("...requires netaddr module. Please install it
using pip."). Without this dep, `wfuzz -z iprange,192.168.1.1-...` and
`-z ipnet,...` fail on a Nix-built wfuzz with a misleading pip-install
message. netaddr stays in nativeCheckInputs since tests/api/test_payload.py
also exercises the ipranges payload.