mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
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>
30 lines
650 B
Nix
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 ];
|
|
};
|
|
}
|