Merge pull request #212331 from MatthewCroughan/mc/laspy

laspy: init at 2.3.0
This commit is contained in:
Ilan Joselevich 2023-03-24 20:59:54 +03:00 committed by GitHub
commit 612676d971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, laszip
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "laspy";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Wdbp6kjuZkJh+pp9OVczdsRNgn41/Tdt7nGFvewcQ1w=";
};
propagatedBuildInputs = [
numpy
laszip
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "laspy" "laszip" ];
meta = with lib; {
description = "Interface for reading/modifying/creating .LAS LIDAR files";
homepage = "https://github.com/laspy/laspy";
license = licenses.bsd2;
maintainers = with maintainers; [ matthewcroughan ];
};
}

View file

@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, scikit-build-core
, distlib
, pytestCheckHook
, pyproject-metadata
, pathspec
, pybind11
, cmake
, LASzip
}:
buildPythonPackage rec {
pname = "laszip-python";
version = "0.2.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "tmontaigu";
repo = pname;
rev = version;
sha256 = "sha256-ujKoUm2Btu25T7ZrSGqjRc3NR1qqsQU8OwHQDSx8grY=";
};
nativeBuildInputs = [
scikit-build-core
scikit-build-core.optional-dependencies.pyproject
cmake
];
buildInputs = [
pybind11
LASzip
];
checkInputs = [
pytestCheckHook
];
preBuild = ''
cd ..
'';
# There are no tests
doCheck = false;
pythonImportsCheck = [ "laszip" ];
meta = with lib; {
description = "Unofficial bindings between Python and LASzip made using pybind11";
homepage = "https://github.com/tmontaigu/laszip-python";
license = licenses.mit;
maintainers = with maintainers; [ matthewcroughan ];
};
}

View file

@ -5309,6 +5309,10 @@ self: super: with self; {
larynx-train = callPackage ../development/python-modules/larynx-train { };
laspy = callPackage ../development/python-modules/laspy { };
laszip = callPackage ../development/python-modules/laszip { };
latexcodec = callPackage ../development/python-modules/latexcodec { };
latexify-py = callPackage ../development/python-modules/latexify-py { };