summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/niaaml/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/niaaml/default.nix')
-rw-r--r--pkgs/development/python-modules/niaaml/default.nix37
1 files changed, 16 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/niaaml/default.nix b/pkgs/development/python-modules/niaaml/default.nix
index d2b9868cacac..88bcb450fbf5 100644
--- a/pkgs/development/python-modules/niaaml/default.nix
+++ b/pkgs/development/python-modules/niaaml/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, niapy
-, numpy
-, pandas
-, poetry-core
-, pytestCheckHook
-, pythonOlder
-, pythonRelaxDepsHook
-, scikit-learn
-, toml-adapt
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ niapy,
+ numpy,
+ pandas,
+ poetry-core,
+ pytestCheckHook,
+ pythonOlder,
+ pythonRelaxDepsHook,
+ scikit-learn,
+ toml-adapt,
}:
buildPythonPackage rec {
@@ -26,9 +27,7 @@ buildPythonPackage rec {
hash = "sha256-d6UlpMrT0GBZlcD1BCZxInXTdyFMBVltxnSyUFbSy0g=";
};
- pythonRelaxDeps = [
- "pandas"
- ];
+ pythonRelaxDeps = [ "pandas" ];
nativeBuildInputs = [
poetry-core
@@ -49,13 +48,9 @@ buildPythonPackage rec {
toml-adapt -path pyproject.toml -a change -dep niapy -ver X
'';
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "niaaml"
- ];
+ pythonImportsCheck = [ "niaaml" ];
meta = with lib; {
description = "Python automated machine learning framework";