From 81dd1c32dd6af2f3f0848f18ca4ddd2f7d842e22 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 11 May 2024 10:37:44 +0200 Subject: [PATCH] oterm: format with nixfmt --- pkgs/by-name/ot/oterm/package.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/ot/oterm/package.nix b/pkgs/by-name/ot/oterm/package.nix index 23074ce200c5..c321aca86236 100644 --- a/pkgs/by-name/ot/oterm/package.nix +++ b/pkgs/by-name/ot/oterm/package.nix @@ -1,6 +1,7 @@ -{ lib -, python3Packages -, fetchFromGitHub +{ + lib, + python3Packages, + fetchFromGitHub, }: python3Packages.buildPythonApplication rec { @@ -24,13 +25,9 @@ python3Packages.buildPythonApplication rec { "typer" ]; - build-system = with python3Packages; [ - poetry-core - ]; + build-system = with python3Packages; [ poetry-core ]; - nativeBuildInputs = with python3Packages; [ - pythonRelaxDepsHook - ]; + nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ]; propagatedBuildInputs = with python3Packages; [ aiohttp @@ -47,9 +44,7 @@ python3Packages.buildPythonApplication rec { typer ]; - pythonImportsCheck = [ - "oterm" - ]; + pythonImportsCheck = [ "oterm" ]; # Tests require a HTTP connection to ollama doCheck = false;