about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-19 13:29:26 +0100
committerGitHub <noreply@github.com>2023-11-19 13:29:26 +0100
commit867bb2fa4c17c2dfc553696b07db919882264a35 (patch)
tree2ac3cb26ac0c8e7ba90ad93092e117861dbc583b /pkgs/tools/security
parent48b8a30c0089f53b3fdcbabebf1dd41e5b7ca4a3 (diff)
parentc03a3985aca8b28a13aa6c2236b6b37fd2f596fa (diff)
downloadnixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar.gz
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar.bz2
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar.lz
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar.xz
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.tar.zst
nixlib-867bb2fa4c17c2dfc553696b07db919882264a35.zip
Merge pull request #268469 from fabaff/boofuzz-bump
boofuzz: 0.4.1 -> 0.4.2
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/boofuzz/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/security/boofuzz/default.nix b/pkgs/tools/security/boofuzz/default.nix
index 37724d87394d..39b35d6944de 100644
--- a/pkgs/tools/security/boofuzz/default.nix
+++ b/pkgs/tools/security/boofuzz/default.nix
@@ -6,16 +6,20 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "boofuzz";
-  version = "0.4.1";
-  format = "setuptools";
+  version = "0.4.2";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "jtpereyda";
-    repo = pname;
+    repo = "boofuzz";
     rev = "refs/tags/v${version}";
-    hash = "sha256-mbxImm5RfYWq1JCCSvvG58Sxv2ad4BOh+RLvtNjQCKE=";
+    hash = "sha256-ffZVFmfDAJ+Qn3hbeHY/CvYgpDLxB+jaYOiYyZqZ7mo=";
   };
 
+  nativeBuildInputs = with python3.pkgs; [
+    poetry-core
+  ];
+
   propagatedBuildInputs = with python3.pkgs; [
     attrs
     click
@@ -42,8 +46,6 @@ python3.pkgs.buildPythonApplication rec {
     "TestNoResponseFailure"
     "TestProcessMonitor"
     "TestSocketConnection"
-    # SyntaxError: invalid syntax, https://github.com/jtpereyda/boofuzz/issues/663
-    "test_msg_60_bytes"
   ] ++ lib.optionals stdenv.isDarwin [
     "test_time_repeater"
   ];