18 buildPythonPackage rec {
24 inherit pname version;
25 hash = "sha256-Osz4UulGZT45nD1Nu+EZ28bT9yz9LVqVyr8L8Mf5JP4=";
29 substituteInPlace pyproject.toml \
30 --replace-warn "numpy>=2.0.0rc1,<3" "numpy"
39 buildInputs = [ openmp ];
41 propagatedBuildInputs = [ numpy ];
44 # make sure we don't import pykdtree from the source tree
45 mv pykdtree/test_tree.py .
49 nativeCheckInputs = [ pytestCheckHook ];
52 description = "kd-tree implementation for fast nearest neighbour search in Python";
53 homepage = "https://github.com/storpipfugl/pykdtree";
54 license = licenses.lgpl3;
55 maintainers = with maintainers; [ psyanticy ];