Merge pull request #185800 from r-ryantm/auto-update/python3.10-annoy

python310Packages.annoy: 1.17.0 -> 1.17.1
This commit is contained in:
Robert Scott 2022-08-09 22:05:59 +01:00 committed by GitHub
commit 73b30cea09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,23 +3,33 @@
, fetchPypi
, h5py
, nose
, pythonOlder
}:
buildPythonPackage rec {
version = "1.17.0";
pname = "annoy";
version = "1.17.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "9891e264041d1dcf3af42f67fbb16cb273c5404bc8c869d0915a3087f71d58dd";
hash = "sha256-vxd9vq+4H2OyrB4SRrHyairMguc7pGY4c00p2CWBIto=";
};
nativeBuildInputs = [ h5py ];
nativeBuildInputs = [
h5py
];
checkInputs = [
nose
];
pythonImportsCheck = [
"annoy"
];
meta = with lib; {
description = "Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk";
homepage = "https://github.com/spotify/annoy";