ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pykdtree / default.nix
blobb4b442945962ff6627d1a287679f6c77bf7c8b9c
1 { lib, buildPythonPackage, fetchPypi, numpy, pytestCheckHook, openmp }:
3 buildPythonPackage rec {
4   pname = "pykdtree";
5   version = "1.3.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-c0L3XnMRA+ZT/B9rn9q8JBDPkrbnsGFggEp1eGybV0c=";
10   };
12   buildInputs = [ openmp ];
14   propagatedBuildInputs = [ numpy ];
16   preCheck = ''
17     # make sure we don't import pykdtree from the source tree
18     mv pykdtree tests
19   '';
21   checkInputs = [ pytestCheckHook ];
23   meta = with lib; {
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 ];
28   };