summary refs log tree commit diff
path: root/pkgs/development/python-modules/pykdtree/default.nix
blob: 86524b6002d61c2d522412a2d7a60d73a34b80a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildPythonPackage, fetchPypi, numpy, nose, openmp }:

buildPythonPackage rec {
  pname = "pykdtree";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "79351b79087f473f83fb27a5cd552bd1056f2dfa7acec5d4a68f35a7cbea6776";
  };

  buildInputs = [ openmp ];

  propagatedBuildInputs = [ numpy ];

  checkInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "kd-tree implementation for fast nearest neighbour search in Python";
    homepage = https://github.com/storpipfugl/pykdtree;
    license = licenses.lgpl3;
    maintainers = with maintainers; [ psyanticy ];
  };
}