From 3576571ca76015f719fcd04890f8fe1b72939f5f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 6 Apr 2024 20:07:18 +0200 Subject: [PATCH] python312Packages.reconplogger: format with nixfmt --- .../python-modules/reconplogger/default.nix | 35 ++++++++----------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/pkgs/development/python-modules/reconplogger/default.nix b/pkgs/development/python-modules/reconplogger/default.nix index b9b3e67542d1..319730e8168f 100644 --- a/pkgs/development/python-modules/reconplogger/default.nix +++ b/pkgs/development/python-modules/reconplogger/default.nix @@ -1,14 +1,15 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, flask -, logmatic-python -, pytestCheckHook -, pythonOlder -, pyyaml -, requests -, setuptools -, testfixtures +{ + lib, + buildPythonPackage, + fetchFromGitHub, + flask, + logmatic-python, + pytestCheckHook, + pythonOlder, + pyyaml, + requests, + setuptools, + testfixtures, }: buildPythonPackage rec { @@ -25,9 +26,7 @@ buildPythonPackage rec { hash = "sha256-jBWy5oHyZpRUWb8OW0dRFfpu3m3hTd5dpIOQCRO5swM="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; dependencies = [ logmatic-python @@ -46,13 +45,9 @@ buildPythonPackage rec { testfixtures ]; - pythonImportsCheck = [ - "reconplogger" - ]; + pythonImportsCheck = [ "reconplogger" ]; - pytestFlagsArray = [ - "reconplogger_tests.py" - ]; + pytestFlagsArray = [ "reconplogger_tests.py" ]; meta = with lib; { description = "Module to ease the standardization of logging within omni:us";