1 { lib, buildPythonPackage, fetchPypi, numpy, pytestCheckHook, openmp }:
3 buildPythonPackage rec {
9 sha256 = "sha256-c0L3XnMRA+ZT/B9rn9q8JBDPkrbnsGFggEp1eGybV0c=";
12 buildInputs = [ openmp ];
14 propagatedBuildInputs = [ numpy ];
17 # make sure we don't import pykdtree from the source tree
21 checkInputs = [ pytestCheckHook ];
24 description = "kd-tree implementation for fast nearest neighbour search in Python";
25 homepage = "https://github.com/storpipfugl/pykdtree";
26 license = licenses.lgpl3;
27 maintainers = with maintainers; [ psyanticy ];