diff options
Diffstat (limited to 'pkgs/development/python-modules/pycm/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pycm/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/pycm/default.nix b/pkgs/development/python-modules/pycm/default.nix index 6b9bfac5d7d0..0c22e1ac607d 100644 --- a/pkgs/development/python-modules/pycm/default.nix +++ b/pkgs/development/python-modules/pycm/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, matplotlib -, numpy -, pytestCheckHook -, pythonOlder -, seaborn +{ + lib, + buildPythonPackage, + fetchFromGitHub, + matplotlib, + numpy, + pytestCheckHook, + pythonOlder, + seaborn, }: buildPythonPackage rec { @@ -28,9 +29,7 @@ buildPythonPackage rec { seaborn ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # Minor tolerance issues with Python 3.12; should be fixed in next release @@ -48,9 +47,7 @@ buildPythonPackage rec { --replace-fail '=get_requires()' '=[]' ''; - pythonImportsCheck = [ - "pycm" - ]; + pythonImportsCheck = [ "pycm" ]; meta = with lib; { description = "Multiclass confusion matrix library"; |
