biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / keras-applications / default.nix
blobcdb3beb6a40311d57f9881fcc43fbd2f074100ba
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   h5py,
7 }:
9 buildPythonPackage rec {
10   pname = "keras-applications";
11   version = "1.0.8";
13   src = fetchPypi {
14     pname = "Keras_Applications";
15     inherit version;
16     sha256 = "5579f9a12bcde9748f4a12233925a59b93b73ae6947409ff34aa2ba258189fe5";
17   };
19   # Cyclic dependency: keras-applications requires keras, which requires keras-applications
20   postPatch = ''
21     sed -i "s/keras>=[^']*//" setup.py
22   '';
24   # No tests in PyPI tarball
25   doCheck = false;
27   propagatedBuildInputs = [
28     numpy
29     h5py
30   ];
32   meta = with lib; {
33     description = "Reference implementations of popular deep learning models";
34     homepage = "https://github.com/keras-team/keras-applications";
35     license = licenses.mit;
36   };