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