nixpkgs-suyu/pkgs/development/python-modules/pykdtree/default.nix
2023-12-20 20:44:59 +01:00

56 lines
918 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
# build-system
, cython_3
, numpy
, setuptools
# native dependencies
, openmp
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pykdtree";
version = "1.3.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-QefF1mnK3CGIrMS7tLC03K9JLYRRLx5lF6erLRIskR0=";
};
nativeBuildInputs = [
cython_3
numpy
setuptools
];
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 ];
};
}