nixpkgs/pkgs/development/python-modules/keras/default.nix
Nikolay Amiantov 50ef776bd4 python.pkgs.Keras: remove default backend
Theano is discontinued. Instead of setting TensorFlow by default let the user
explicitly add preferred backend into environment.
2017-10-16 00:59:51 +03:00

37 lines
767 B
Nix

{ stdenv, lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
, six, numpy, scipy, pyyaml
}:
buildPythonPackage rec {
pname = "Keras";
version = "2.0.8";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "899dc6aaed366f20100b9f80cf1093ea5b43eecc74afd1dc63a4e48dfa776ab9";
};
checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];
propagatedBuildInputs = [
six pyyaml numpy scipy
];
# Couldn't get tests working
doCheck = false;
meta = with stdenv.lib; {
description = "Deep Learning library for Theano and TensorFlow";
homepage = https://keras.io;
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}