From 6d2625c64b872b468f632a46a5e27173bca35602 Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Sat, 1 Feb 2025 23:50:56 +0800 Subject: [PATCH] buildPython*: remove redundant parenthesis This commit is intentionally unformatted for smoother merging and rebasing experience. --- .../interpreters/python/mk-python-derivation.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix index 3f919a095df7..698cb402e46d 100644 --- a/pkgs/development/interpreters/python/mk-python-derivation.nix +++ b/pkgs/development/interpreters/python/mk-python-derivation.nix @@ -207,8 +207,7 @@ in let # Keep extra attributes from `attrs`, e.g., `patchPhase', etc. - self = ( - stdenv.mkDerivation ( + self = stdenv.mkDerivation ( finalAttrs: let format' = @@ -450,8 +449,7 @@ let unittestFlagsArray = attrs.unittestFlagsArray; } ) - ) - ); + ); # This derivation transformation function must be independent to `attrs` # for fixed-point arguments support in the future.