From c9d195fd7d9c4e6d121aa3170268a87c1a71dcc7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 12:46:00 +0200 Subject: [PATCH] python312Packages.aioasuswrt: format with nixfmt --- .../python-modules/aioasuswrt/default.nix | 31 ++++++++----------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/pkgs/development/python-modules/aioasuswrt/default.nix b/pkgs/development/python-modules/aioasuswrt/default.nix index 719e66121fc0..5847da65b28b 100644 --- a/pkgs/development/python-modules/aioasuswrt/default.nix +++ b/pkgs/development/python-modules/aioasuswrt/default.nix @@ -1,12 +1,13 @@ -{ lib -, asyncssh -, buildPythonPackage -, fetchFromGitHub -, pytest-asyncio -, pytest-mock -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + asyncssh, + buildPythonPackage, + fetchFromGitHub, + pytest-asyncio, + pytest-mock, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -29,13 +30,9 @@ buildPythonPackage rec { --replace-fail "--cov-report term-missing" "" ''; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - dependencies = [ - asyncssh - ]; + dependencies = [ asyncssh ]; nativeCheckInputs = [ pytest-asyncio @@ -43,9 +40,7 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ - "aioasuswrt" - ]; + pythonImportsCheck = [ "aioasuswrt" ]; meta = with lib; { description = "Python module for Asuswrt";