From 3882105d91b335b8dfd54058ca475a6a2ec7a4a6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 5 Apr 2024 22:57:01 +0200 Subject: [PATCH] python312Packages.gorilla: format with nixfmtx --- .../python-modules/gorilla/default.nix | 31 +++++++------------ 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/pkgs/development/python-modules/gorilla/default.nix b/pkgs/development/python-modules/gorilla/default.nix index e1391e11f605..8b61584a3af4 100644 --- a/pkgs/development/python-modules/gorilla/default.nix +++ b/pkgs/development/python-modules/gorilla/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, pythonAtLeast -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + pythonAtLeast, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -19,21 +20,13 @@ buildPythonPackage rec { hash = "sha256-AFq4hTsDcWKnx3u4JGBMbggYeO4DwJrQHvQXRIVgGdM="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "gorilla" - ]; + pythonImportsCheck = [ "gorilla" ]; - disabledTests = lib.optionals (pythonAtLeast "3.12") [ - "test_find_patches_2" - ]; + disabledTests = lib.optionals (pythonAtLeast "3.12") [ "test_find_patches_2" ]; meta = with lib; { description = "Convenient approach to monkey patching";