diff options
Diffstat (limited to 'pkgs/development/python-modules/mlxtend/default.nix')
-rw-r--r-- | pkgs/development/python-modules/mlxtend/default.nix | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/mlxtend/default.nix b/pkgs/development/python-modules/mlxtend/default.nix index 4a743ac664a9..85c5c05f4eae 100644 --- a/pkgs/development/python-modules/mlxtend/default.nix +++ b/pkgs/development/python-modules/mlxtend/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, isPy27 -, setuptools -, pytestCheckHook -, scipy -, numpy -, scikit-learn -, pandas -, matplotlib -, joblib +{ + lib, + buildPythonPackage, + fetchFromGitHub, + isPy27, + setuptools, + pytestCheckHook, + scipy, + numpy, + scikit-learn, + pandas, + matplotlib, + joblib, }: buildPythonPackage rec { @@ -26,9 +27,7 @@ buildPythonPackage rec { hash = "sha256-FlP6UqX/Ejk9c3Enm0EJ0xqy7iOhDlFqjWWxd4VIczQ="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ scipy @@ -39,13 +38,9 @@ buildPythonPackage rec { joblib ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pytestFlagsArray = [ - "-sv" - ]; + pytestFlagsArray = [ "-sv" ]; disabledTestPaths = [ # image tests download files over the network @@ -53,9 +48,9 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "A library of Python tools and extensions for data science"; + description = "Library of Python tools and extensions for data science"; homepage = "https://github.com/rasbt/mlxtend"; - license= licenses.bsd3; + license = licenses.bsd3; maintainers = with maintainers; [ evax ]; platforms = platforms.unix; # incompatible with nixpkgs scikit-learn version |