1 { lib, buildPythonPackage, fetchPypi, numpy, h5py }:
3 buildPythonPackage rec {
4 pname = "Keras_Applications";
9 sha256 = "5579f9a12bcde9748f4a12233925a59b93b73ae6947409ff34aa2ba258189fe5";
12 # Cyclic dependency: keras-applications requires keras, which requires keras-applications
14 sed -i "s/keras>=[^']*//" setup.py
17 # No tests in PyPI tarball
20 propagatedBuildInputs = [ numpy h5py ];
23 description = "Reference implementations of popular deep learning models";
24 homepage = "https://github.com/keras-team/keras-applications";
25 license = licenses.mit;