1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 setuptools-scm, 7 wheel, 8}: 9 10buildPythonPackage rec { 11 pname = "xlsx2csv"; 12 version = "0.8.2"; 13 format = "pyproject"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-zdJyyC+LMvHO52rq74ey7jVJZh/d+Q9+zyMQlnoW/IQ="; 18 }; 19 20 nativeBuildInputs = [ 21 setuptools 22 setuptools-scm 23 wheel 24 ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/dilshod/xlsx2csv"; 28 description = "Convert xlsx to csv"; 29 mainProgram = "xlsx2csv"; 30 license = licenses.bsd3; 31 maintainers = with maintainers; [ jb55 ]; 32 }; 33}