mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
622 B
Nix
30 lines
622 B
Nix
|
{
|
||
|
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 ];
|
||
|
};
|
||
|
}
|