From 3674a336f628338a9c92ae27c846240d352223da Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 09:32:42 +0200 Subject: [PATCH] audiness: format with nixfmt --- pkgs/by-name/au/audiness/package.nix | 36 +++++++++++++--------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/au/audiness/package.nix b/pkgs/by-name/au/audiness/package.nix index d4ee8bc3f2a5..06d3e4c49a94 100644 --- a/pkgs/by-name/au/audiness/package.nix +++ b/pkgs/by-name/au/audiness/package.nix @@ -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";