about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-19 09:18:28 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-11-19 09:18:28 +0100
commitc03a3985aca8b28a13aa6c2236b6b37fd2f596fa (patch)
tree49200be1eeceddb0d3fe046bde2ffbd46c986e93 /pkgs/tools/security
parent301a784da0f4c06b60d9319cd7c3ada608d17149 (diff)
downloadnixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar.gz
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar.bz2
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar.lz
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar.xz
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.tar.zst
nixlib-c03a3985aca8b28a13aa6c2236b6b37fd2f596fa.zip
boofuzz: 0.4.1 -> 0.4.2
Diff: jtpereyda/boofuzz@refs/tags/v0.4.1...v0.4.2

Changelog: https://github.com/jtpereyda/boofuzz/blob/v0.4.2/CHANGELOG.rst
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"
   ];