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
, buildPythonPackage
, fetchPypi
, h5py
, nose
}:
@ -13,6 +14,8 @@ buildPythonPackage rec {
sha256 = "fe2779664bd8846f2d67191a7e6010b8df890ac4586336748fd0697f31654379";
};
nativeBuildInputs = [ h5py ];
checkInputs = [
nose
];