nixpkgs/pkgs/development/python-modules/meshlabxml/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

30 lines
650 B
Nix

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