blob: 55deee586c8da81ed73663ec94967008879c851e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ lib, buildPythonPackage, fetchPypi
, pytest, pytest-cov, pytest-xdist
, six, numpy, scipy, pyyaml, h5py
, keras-applications, keras-preprocessing
}:
buildPythonPackage rec {
pname = "keras";
version = "3.2.1";
format = "wheel";
src = fetchPypi {
inherit format pname version;
hash = "sha256-C+HomwQeaXvlYthCLsuVjuVIGs/AiZEyAJJsVh0ligM=";
python = "py3";
dist = "py3";
};
nativeCheckInputs = [
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 ];
};
}
|