depot/third_party/nixpkgs/pkgs/development/python-modules/pykdtree/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

29 lines
734 B
Nix

{ lib, buildPythonPackage, fetchPypi, numpy, pytestCheckHook, openmp }:
buildPythonPackage rec {
pname = "pykdtree";
version = "1.3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-eAtpPQVVuFfXqrMeNdQpO/Tr253sekW6S7I7RAD2Jtw=";
};
buildInputs = [ openmp ];
propagatedBuildInputs = [ numpy ];
preCheck = ''
# make sure we don't import pykdtree from the source tree
mv pykdtree tests
'';
nativeCheckInputs = [ pytestCheckHook ];
meta = with 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 ];
};
}