nixpkgs/pkgs/development/python-modules/meshlabxml/default.nix
2024-03-17 12:03:59 +01:00

30 lines
627 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "meshlabxml";
version = "2018.3";
src = fetchPypi {
pname = "MeshLabXML";
inherit version;
sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8";
};
propagatedBuildInputs = [ ];
doCheck = false; # Upstream not currently have any tests.
pythonImportsCheck = [ "meshlabxml" ];
meta = with lib; {
homepage = "https://github.com/3DLIRIOUS/MeshLabXML";
description = "Create and run MeshLab XML scripts with Python";
license = licenses.lgpl21;
maintainers = with maintainers; [ nh2 ];
};
}