Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 fetchPypi, 4 pythonOlder, 5 lib, 6}: 7 8buildPythonPackage rec { 9 pname = "MeshLabXML"; 10 version = "2018.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1villmg46hqby5jjkkpxr5bxydr72y5b3cbfngwpyxxdljn091w8"; 15 }; 16 17 propagatedBuildInputs = [ ]; 18 19 doCheck = false; # Upstream not currently have any tests. 20 21 pythonImportsCheck = [ "meshlabxml" ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/3DLIRIOUS/MeshLabXML"; 25 description = "Create and run MeshLab XML scripts with Python"; 26 license = licenses.lgpl21; 27 maintainers = with maintainers; [ nh2 ]; 28 }; 29}