audiness: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 09:32:42 +02:00
parent 851c6dbee0
commit 3674a336f6
1 changed files with 16 additions and 20 deletions

View File

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