python.pkgs.Keras: remove default backend
Theano is discontinued. Instead of setting TensorFlow by default let the user explicitly add preferred backend into environment.
This commit is contained in:
parent
19997f0100
commit
50ef776bd4
@ -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 {
|
||||
@ -28,7 +21,7 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six Theano pyyaml
|
||||
six pyyaml numpy scipy
|
||||
];
|
||||
|
||||
# Couldn't get tests working
|
||||
|
Loading…
Reference in New Issue
Block a user