diff options
Diffstat (limited to 'pkgs/development/python-modules/tflearn/default.nix')
-rw-r--r-- | pkgs/development/python-modules/tflearn/default.nix | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/tflearn/default.nix b/pkgs/development/python-modules/tflearn/default.nix index d2eee46f14ce..3bd15b7fba5e 100644 --- a/pkgs/development/python-modules/tflearn/default.nix +++ b/pkgs/development/python-modules/tflearn/default.nix @@ -1,5 +1,13 @@ -{ lib, fetchPypi, buildPythonPackage, pytest, scipy, h5py -, pillow, tensorflow }: +{ + lib, + fetchPypi, + buildPythonPackage, + pytest, + scipy, + h5py, + pillow, + tensorflow, +}: buildPythonPackage rec { pname = "tflearn"; @@ -13,13 +21,18 @@ buildPythonPackage rec { buildInputs = [ pytest ]; - propagatedBuildInputs = [ scipy h5py pillow tensorflow ]; + propagatedBuildInputs = [ + scipy + h5py + pillow + tensorflow + ]; doCheck = false; meta = with lib; { description = "Deep learning library featuring a higher-level API for TensorFlow"; - homepage = "https://github.com/tflearn/tflearn"; - license = licenses.mit; + homepage = "https://github.com/tflearn/tflearn"; + license = licenses.mit; }; } |