audiness: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 09:32:42 +02:00
parent 851c6dbee0
commit 3674a336f6

View File

@ -1,6 +1,7 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -15,27 +16,22 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-vc2k3oEMTgzm/C6z6BieRrT3cSP0IkY+D3RXkNGaZTE="; hash = "sha256-vc2k3oEMTgzm/C6z6BieRrT3cSP0IkY+D3RXkNGaZTE=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [ "validators" ];
"validators"
];
build-system = with python3.pkgs; [ build-system = with python3.pkgs; [ poetry-core ];
poetry-core
];
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
pythonRelaxDepsHook
];
dependencies = with python3.pkgs; [ dependencies =
pytenable with python3.pkgs;
typer [
validators pytenable
] ++ typer.optional-dependencies.all; typer
validators
]
++ typer.optional-dependencies.all;
pythonImportsCheck = [ pythonImportsCheck = [ "audiness" ];
"audiness"
];
meta = with lib; { meta = with lib; {
description = "CLI tool to interact with Nessus"; description = "CLI tool to interact with Nessus";