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

37 lines
799 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytest_xdist
2018-05-10 01:13:30 -07:00
, six, numpy, scipy, pyyaml, h5py
2018-08-03 02:43:14 -07:00
, keras-applications, keras-preprocessing
2017-02-15 03:56:58 -08:00
}:
buildPythonPackage rec {
pname = "Keras";
2020-08-16 10:31:06 -07:00
version = "2.4.3";
2017-02-15 03:56:58 -08:00
src = fetchPypi {
inherit pname version;
2020-08-16 10:31:06 -07:00
sha256 = "fedd729b52572fb108a98e3d97e1bac10a81d3917d2103cc20ab2a5f03beb973";
2017-02-15 03:56:58 -08:00
};
checkInputs = [
pytest
pytestcov
pytest_xdist
];
propagatedBuildInputs = [
2018-05-10 01:13:30 -07:00
six pyyaml numpy scipy h5py
2018-08-03 02:43:14 -07:00
keras-applications keras-preprocessing
2017-02-15 03:56:58 -08:00
];
# Couldn't get tests working
doCheck = false;
meta = with lib; {
2017-02-15 03:56:58 -08:00
description = "Deep Learning library for Theano and TensorFlow";
homepage = "https://keras.io";
2017-02-15 03:56:58 -08:00
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}