offat: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 11:14:45 +02:00
parent 347bdce1c4
commit 24115d0331
1 changed files with 6 additions and 9 deletions

View File

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