diff options
Diffstat (limited to 'pkgs/development/python-modules/patsy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/patsy/default.nix | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/patsy/default.nix b/pkgs/development/python-modules/patsy/default.nix index 48797d05142b..89164e09a546 100644 --- a/pkgs/development/python-modules/patsy/default.nix +++ b/pkgs/development/python-modules/patsy/default.nix @@ -1,11 +1,12 @@ -{ lib -, fetchPypi -, buildPythonPackage -, setuptools -, six -, numpy -, scipy # optional, allows spline-related features (see patsy's docs) -, pytestCheckHook +{ + lib, + fetchPypi, + buildPythonPackage, + setuptools, + six, + numpy, + scipy, # optional, allows spline-related features (see patsy's docs) + pytestCheckHook, }: buildPythonPackage rec { @@ -18,9 +19,7 @@ buildPythonPackage rec { hash = "sha256-lcbUenIiU1+Ev/f2PXMD8uKXdHpZjbic9cZ/DAx9LNs="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ six @@ -28,13 +27,9 @@ buildPythonPackage rec { scipy ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "patsy" - ]; + pythonImportsCheck = [ "patsy" ]; meta = { description = "A Python package for describing statistical models"; @@ -43,4 +38,3 @@ buildPythonPackage rec { maintainers = with lib.maintainers; [ ilya-kolpakov ]; }; } - |
