From dbfa5b3135c2f229104f5a7383b7afbc85c67384 Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 20 May 2024 23:53:37 +0900 Subject: [PATCH] python311Packages.cufflinks: format with nixfmt --- .../python-modules/cufflinks/default.nix | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/cufflinks/default.nix b/pkgs/development/python-modules/cufflinks/default.nix index 4884c2e584bc2..5f804e5da5271 100644 --- a/pkgs/development/python-modules/cufflinks/default.nix +++ b/pkgs/development/python-modules/cufflinks/default.nix @@ -1,14 +1,17 @@ -{ lib, buildPythonPackage, fetchPypi -, chart-studio -, colorlover -, ipython -, ipywidgets -, pytest -, nose -, numpy -, pandas -, six -, statsmodels +{ + lib, + buildPythonPackage, + fetchPypi, + chart-studio, + colorlover, + ipython, + ipywidgets, + pytest, + nose, + numpy, + pandas, + six, + statsmodels, }: buildPythonPackage rec { @@ -32,7 +35,10 @@ buildPythonPackage rec { statsmodels ]; - nativeCheckInputs = [ pytest nose ]; + nativeCheckInputs = [ + pytest + nose + ]; # ignore tests which are incompatible with pandas>=1.0 # https://github.com/santosjorge/cufflinks/issues/236