Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 18 lines 467 B view raw
1{lib, buildPythonPackage, fetchPypi}: 2 3buildPythonPackage rec { 4 pname = "XlsxWriter"; 5 version = "1.1.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "de9ef46088489915eaaee00c7088cff93cf613e9990b46b933c98eb46f21b47f"; 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}