Merge pull request #91523 from nh2/cloudcompare-2.11.0

CloudCompare, pdal, libe57format, MeshLabXML
This commit is contained in:
Niklas Hambüchen
2020-06-26 15:19:10 +02:00
committed by GitHub
9 changed files with 310 additions and 9 deletions

View File

@@ -0,0 +1,29 @@
{
buildPythonPackage,
fetchPypi,
pythonOlder,
lib,
}:
buildPythonPackage rec {
pname = "MeshLabXML";
version = "2018.3";
src = fetchPypi {
inherit pname version;
sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8";
};
propagatedBuildInputs = [ ];
doCheck = false; # Upstream not currently have any tests.
pythonImportsCheck = [ "meshlabxml" ];
meta = with lib; {
homepage = "https://github.com/3DLIRIOUS/MeshLabXML";
description = "Create and run MeshLab XML scripts with Python";
license = licenses.lgpl21;
maintainers = with maintainers; [ nh2 ];
};
}