1 { lib, buildPythonPackage, fetchPypi, numpy, nose, openmp }:
3 buildPythonPackage rec {
9 sha256 = "bebe5c608129f2997e88510c00010b9a78581b394924c0e3ecd131d52415165d";
12 buildInputs = [ openmp ];
14 propagatedBuildInputs = [ numpy ];
16 checkInputs = [ nose ];
19 description = "kd-tree implementation for fast nearest neighbour search in Python";
20 homepage = "https://github.com/storpipfugl/pykdtree";
21 license = licenses.lgpl3;
22 maintainers = with maintainers; [ psyanticy ];