ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / meshlabxml / default.nix
blobe0793f3ec978b18964e4dea38ae1131e44ab14a0
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "MeshLabXML";
9   version = "2018.3";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8";
14   };
16   propagatedBuildInputs = [ ];
18   doCheck = false; # Upstream not currently have any tests.
20   pythonImportsCheck = [ "meshlabxml" ];
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   };