1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5}: 6 7buildPythonPackage rec { 8 pname = "MeshLabXML"; 9 version = "2018.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8"; 14 }; 15 16 propagatedBuildInputs = [ ]; 17 18 doCheck = false; # Upstream not currently have any tests. 19 20 pythonImportsCheck = [ "meshlabxml" ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/3DLIRIOUS/MeshLabXML"; 24 description = "Create and run MeshLab XML scripts with Python"; 25 license = licenses.lgpl21; 26 maintainers = with maintainers; [ nh2 ]; 27 }; 28}