linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / meshlabxml / default.nix
blobc1091296d2e157cfc73103705133d75c6f97e27c
2   buildPythonPackage,
3   fetchPypi,
4   pythonOlder,
5   lib,
6 }:
8 buildPythonPackage rec {
9   pname = "MeshLabXML";
10   version = "2018.3";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8";
15   };
17   propagatedBuildInputs = [ ];
19   doCheck = false; # Upstream not currently have any tests.
21   pythonImportsCheck = [ "meshlabxml" ];
23   meta = with lib; {
24     homepage = "https://github.com/3DLIRIOUS/MeshLabXML";
25     description = "Create and run MeshLab XML scripts with Python";
26     license = licenses.lgpl21;
27     maintainers = with maintainers; [ nh2 ];
28   };