depot/third_party/nixpkgs/pkgs/development/python-modules/keras/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

37 lines
808 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest, pytest-cov, pytest-xdist
, six, numpy, scipy, pyyaml, h5py
, keras-applications, keras-preprocessing
}:
buildPythonPackage rec {
pname = "keras";
version = "2.11.0";
format = "wheel";
src = fetchPypi {
inherit format pname version;
sha256 = "sha256-OMb/8OqaiwaicXc2VlySpzyM2bHCOecSXMsYi3hI9l4=";
};
checkInputs = [
pytest
pytest-cov
pytest-xdist
];
propagatedBuildInputs = [
six pyyaml numpy scipy h5py
keras-applications keras-preprocessing
];
# Couldn't get tests working
doCheck = false;
meta = with lib; {
description = "Deep Learning library for Theano and TensorFlow";
homepage = "https://keras.io";
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}