nixpkgs/pkgs/by-name/bo/boofuzz/package.nix
2025-07-24 13:55:40 +02:00

60 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "boofuzz";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jtpereyda";
repo = "boofuzz";
tag = "v${version}";
hash = "sha256-ffZVFmfDAJ+Qn3hbeHY/CvYgpDLxB+jaYOiYyZqZ7mo=";
};
build-system = with python3.pkgs; [ poetry-core ];
dependencies = with python3.pkgs; [
attrs
click
colorama
flask
funcy
psutil
pyserial
pydot
tornado
];
nativeCheckInputs = with python3.pkgs; [
mock
netifaces
pytest-bdd
pytestCheckHook
];
disabledTests = [
"TestNetworkMonitor"
"TestNoResponseFailure"
"TestProcessMonitor"
"TestSocketConnection"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_time_repeater" ];
pythonImportsCheck = [ "boofuzz" ];
meta = {
description = "Network protocol fuzzing tool";
homepage = "https://github.com/jtpereyda/boofuzz";
changelog = "https://github.com/jtpereyda/boofuzz/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "boo";
};
}