pythonPackages.meshlabxml: init at 2018.3
This commit is contained in:
parent
8c74f97c15
commit
75c7f58507
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/meshlabxml/default.nix
Normal file
29
pkgs/development/python-modules/meshlabxml/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonOlder,
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -4587,6 +4587,8 @@ in {
|
|||
|
||||
mesonpep517 = callPackage ../development/python-modules/mesonpep517 { };
|
||||
|
||||
meshlabxml = callPackage ../development/python-modules/meshlabxml { };
|
||||
|
||||
metaphone = callPackage ../development/python-modules/metaphone { };
|
||||
|
||||
mezzanine = callPackage ../development/python-modules/mezzanine { };
|
||||
|
|
Loading…
Reference in a new issue