nixpkgs/pkgs/development/python-modules/keras/default.nix

37 lines
767 B
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
, six, numpy, scipy, pyyaml
2017-02-15 12:56:58 +01:00
}:
buildPythonPackage rec {
pname = "Keras";
2017-11-24 20:36:20 +01:00
version = "2.1.1";
2017-02-15 12:56:58 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-24 20:36:20 +01:00
sha256 = "f0ca2458c60d9711edf4291230b31795307ad3781cb6232ff4792b53c8f55123";
2017-02-15 12:56:58 +01:00
};
checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];
propagatedBuildInputs = [
six pyyaml numpy scipy
2017-02-15 12:56:58 +01:00
];
# Couldn't get tests working
doCheck = false;
meta = with stdenv.lib; {
description = "Deep Learning library for Theano and TensorFlow";
homepage = https://keras.io;
2017-02-15 12:56:58 +01:00
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}