7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-LZd9nMeI+TMd95r6CuNAB7eMqrE97ne0ioPjuIbtK7w=";
19 sourceRoot = "${src.name}/src";
26 build-system = with python3.pkgs; [ poetry-core ];
28 dependencies = with python3.pkgs; [
32 openapi-spec-validator
39 optional-dependencies = {
40 api = with python3.pkgs; [
49 # Project has no tests
52 pythonImportsCheck = [ "offat" ];
55 description = "Tool to test APIs for prevalent vulnerabilities";
56 homepage = "https://github.com/OWASP/OFFAT/";
57 changelog = "https://github.com/OWASP/OFFAT/releases/tag/v${version}";
58 license = licenses.mit;
59 maintainers = with maintainers; [ fab ];
60 mainProgram = "offat";