offat: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 11:14:45 +02:00
parent 347bdce1c4
commit 24115d0331

View File

@ -1,6 +1,7 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -17,9 +18,7 @@ python3.pkgs.buildPythonApplication rec {
sourceRoot = "${src.name}/src"; sourceRoot = "${src.name}/src";
build-system = with python3.pkgs; [ build-system = with python3.pkgs; [ poetry-core ];
poetry-core
];
dependencies = with python3.pkgs; [ dependencies = with python3.pkgs; [
aiohttp aiohttp
@ -45,9 +44,7 @@ python3.pkgs.buildPythonApplication rec {
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "offat" ];
"offat"
];
meta = with lib; { meta = with lib; {
description = "Tool to test APIs for prevalent vulnerabilities"; description = "Tool to test APIs for prevalent vulnerabilities";