Merge pull request #268469 from fabaff/boofuzz-bump

boofuzz: 0.4.1 -> 0.4.2

authored by Fabian Affolter and committed by GitHub 867bb2fa 48b8a30c

+8 -6
+8 -6
pkgs/tools/security/boofuzz/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "boofuzz"; 9 - version = "0.4.1"; 10 - format = "setuptools"; 9 + version = "0.4.2"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "jtpereyda"; 14 - repo = pname; 14 + repo = "boofuzz"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-mbxImm5RfYWq1JCCSvvG58Sxv2ad4BOh+RLvtNjQCKE="; 16 + hash = "sha256-ffZVFmfDAJ+Qn3hbeHY/CvYgpDLxB+jaYOiYyZqZ7mo="; 17 17 }; 18 + 19 + nativeBuildInputs = with python3.pkgs; [ 20 + poetry-core 21 + ]; 18 22 19 23 propagatedBuildInputs = with python3.pkgs; [ 20 24 attrs ··· 42 46 "TestNoResponseFailure" 43 47 "TestProcessMonitor" 44 48 "TestSocketConnection" 45 - # SyntaxError: invalid syntax, https://github.com/jtpereyda/boofuzz/issues/663 46 - "test_msg_60_bytes" 47 49 ] ++ lib.optionals stdenv.isDarwin [ 48 50 "test_time_repeater" 49 51 ];