python313Packages.wfuzz: fix build
fixes https://hydra.nixos.org/build/290705068
This commit is contained in:
@@ -14,6 +14,8 @@
|
||||
setuptools,
|
||||
six,
|
||||
fetchpatch2,
|
||||
pythonAtLeast,
|
||||
legacy-cgi,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -46,14 +48,17 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
chardet
|
||||
distutils # src/wfuzz/plugin_api/base.py
|
||||
pycurl
|
||||
six
|
||||
setuptools
|
||||
pyparsing
|
||||
] ++ lib.optionals stdenv.hostPlatform.isWindows [ colorama ];
|
||||
dependencies =
|
||||
[
|
||||
chardet
|
||||
distutils # src/wfuzz/plugin_api/base.py
|
||||
pycurl
|
||||
six
|
||||
setuptools
|
||||
pyparsing
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isWindows [ colorama ]
|
||||
++ lib.optionals (pythonAtLeast "3.13") [ legacy-cgi ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
netaddr
|
||||
|
||||
Reference in New Issue
Block a user