My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/meshlabxml/default.nix

28 lines
607 B

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "MeshLabXML";
version = "2018.3";
src = fetchPypi {
inherit pname 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 ];
};
}