18 buildPythonPackage rec {
24 inherit pname version;
25 hash = "sha256-EISP9qxzMraOZb+MLolme2tisHWq0nI0d0Smm/HIrX4=";
34 buildInputs = [ openmp ];
36 propagatedBuildInputs = [ numpy ];
39 # make sure we don't import pykdtree from the source tree
40 mv pykdtree/test_tree.py .
44 nativeCheckInputs = [ pytestCheckHook ];
47 description = "kd-tree implementation for fast nearest neighbour search in Python";
48 homepage = "https://github.com/storpipfugl/pykdtree";
49 license = licenses.lgpl3;
50 maintainers = with maintainers; [ psyanticy ];