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