python3Packages.annoy: add missing h5py dependency

This commit is contained in:
Jonathan Ringer 2020-01-06 01:48:28 -08:00 committed by Jon
parent 568b994bb0
commit e8f0c8995d

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, h5py
, nose , nose
}: }:
@ -13,6 +14,8 @@ buildPythonPackage rec {
sha256 = "fe2779664bd8846f2d67191a7e6010b8df890ac4586336748fd0697f31654379"; sha256 = "fe2779664bd8846f2d67191a7e6010b8df890ac4586336748fd0697f31654379";
}; };
nativeBuildInputs = [ h5py ];
checkInputs = [ checkInputs = [
nose nose
]; ];