ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / keras-applications / default.nix
blob82ee6803d4bf38e50153164e86557cea3b2532ec
1 { lib, buildPythonPackage, fetchPypi, numpy, h5py }:
3 buildPythonPackage rec {
4   pname = "Keras_Applications";
5   version = "1.0.8";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "5579f9a12bcde9748f4a12233925a59b93b73ae6947409ff34aa2ba258189fe5";
10   };
12   # Cyclic dependency: keras-applications requires keras, which requires keras-applications
13   postPatch = ''
14     sed -i "s/keras>=[^']*//" setup.py
15   '';
17   # No tests in PyPI tarball
18   doCheck = false;
20   propagatedBuildInputs = [ numpy h5py ];
22   meta = with lib; {
23     description = "Reference implementations of popular deep learning models";
24     homepage = "https://github.com/keras-team/keras-applications";
25     license = licenses.mit;
26   };