Commit da4f17a2 authored by matthewcroughan's avatar matthewcroughan
Browse files

laspy: init at 2.3.0



Co-authored-by: default avatarNick Cao <nickcao@nichi.co>
Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent 07051c0b
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5309,6 +5309,8 @@ self: super: with self; {

  larynx-train = callPackage ../development/python-modules/larynx-train { };

  laspy = callPackage ../development/python-modules/laspy { };

  latexcodec = callPackage ../development/python-modules/latexcodec { };

  latexify-py = callPackage ../development/python-modules/latexify-py { };