1{lib, buildPythonPackage, fetchPypi}: 2 3buildPythonPackage rec { 4 pname = "XlsxWriter"; 5 version = "1.0.9"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "98a94b32d4929d3e34595b4654b8e7f951182f540056b9cb734c88899912f729"; 10 }; 11 12 meta = { 13 description = "A Python module for creating Excel XLSX files"; 14 homepage = https://xlsxwriter.readthedocs.io/; 15 maintainers = with lib.maintainers; [ jluttine ]; 16 license = lib.licenses.bsd2; 17 }; 18}