mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
laspy: init at 2.3.0
Co-authored-by: Nick Cao <nickcao@nichi.co> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
07051c0bee
commit
da4f17a2a6
35
pkgs/development/python-modules/laspy/default.nix
Normal file
35
pkgs/development/python-modules/laspy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user