pythonPackages.meshlabxml: init at 2018.3

This commit is contained in:
Niklas Hambüchen 2020-03-09 18:20:08 +01:00
parent 8c74f97c15
commit 75c7f58507
2 changed files with 31 additions and 0 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 ];
};
}

View file

@ -4587,6 +4587,8 @@ in {
mesonpep517 = callPackage ../development/python-modules/mesonpep517 { };
meshlabxml = callPackage ../development/python-modules/meshlabxml { };
metaphone = callPackage ../development/python-modules/metaphone { };
mezzanine = callPackage ../development/python-modules/mezzanine { };