ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / keras / default.nix
blob32f4ad3a5995e1c4fd35e5c61a4e02a0a98b36cb
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pytest-cov, pytest-xdist
3 , six, numpy, scipy, pyyaml, h5py
4 , keras-applications, keras-preprocessing
5 }:
7 buildPythonPackage rec {
8   pname = "keras";
9   version = "2.10.0";
10   format = "wheel";
12   src = fetchPypi {
13     inherit format pname version;
14     sha256 = "sha256-JqbiwlIudGjd6iJxCpmzKQSTdo/AijnnXRFzoONFL98=";
15   };
17   checkInputs = [
18     pytest
19     pytest-cov
20     pytest-xdist
21   ];
23   propagatedBuildInputs = [
24     six pyyaml numpy scipy h5py
25     keras-applications keras-preprocessing
26   ];
28   # Couldn't get tests working
29   doCheck = false;
31   meta = with lib; {
32     description = "Deep Learning library for Theano and TensorFlow";
33     homepage = "https://keras.io";
34     license = licenses.mit;
35     maintainers = with maintainers; [ NikolaMandic ];
36   };