7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-USSvUtY5THzsWlJtVYxrCquRJWfAoD7b7NHP7pB27sg=";
19 sourceRoot = "${src.name}/src";
21 build-system = with python3.pkgs; [ poetry-core ];
23 dependencies = with python3.pkgs; [
27 openapi-spec-validator
34 passthru.optional-dependencies = {
35 api = with python3.pkgs; [
44 # Project has no tests
47 pythonImportsCheck = [ "offat" ];
50 description = "Tool to test APIs for prevalent vulnerabilities";
51 homepage = "https://github.com/OWASP/OFFAT/";
52 changelog = "https://github.com/OWASP/OFFAT/releases/tag/v${version}";
53 license = licenses.mit;
54 maintainers = with maintainers; [ fab ];
55 mainProgram = "offat";