Skip to content

Commit

Permalink
python.pkgs.Keras: remove default backend
Browse files Browse the repository at this point in the history
Theano is discontinued. Instead of setting TensorFlow by default let the user
explicitly add preferred backend into environment.
  • Loading branch information
abbradar committed Oct 15, 2017
1 parent 19997f0 commit 50ef776
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions pkgs/development/python-modules/keras/default.nix
@@ -1,13 +1,6 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, pytestpep8
, pytest_xdist
, six
, Theano
, pyyaml
{ stdenv, lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
, six, numpy, scipy, pyyaml
}:

buildPythonPackage rec {
Expand All @@ -28,7 +21,7 @@ buildPythonPackage rec {
];

propagatedBuildInputs = [
six Theano pyyaml
six pyyaml numpy scipy
];

# Couldn't get tests working
Expand Down

0 comments on commit 50ef776

Please sign in to comment.