16 buildPythonPackage rec {
17 pname = "pynndescent";
21 disabled = pythonOlder "3.6";
24 inherit pname version;
25 hash = "sha256-10JUwO4KHu7IRZfV/on+3Pd4WT7qvjLC+XQSk0qYAPs=";
28 nativeBuildInputs = [ setuptools ];
30 propagatedBuildInputs = [
36 ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
38 nativeCheckInputs = [ pytestCheckHook ];
40 pythonImportsCheck = [ "pynndescent" ];
43 description = "Nearest Neighbor Descent";
44 homepage = "https://github.com/lmcinnes/pynndescent";
45 license = licenses.bsd2;
46 maintainers = with maintainers; [ mic92 ];