1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/XlsxWriter/default.nix

19 lines
467 B
Nix
Raw Normal View History

{lib, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "XlsxWriter";
2018-08-30 16:43:29 +01:00
version = "1.0.9";
src = fetchPypi {
inherit pname version;
2018-08-30 16:43:29 +01:00
sha256 = "98a94b32d4929d3e34595b4654b8e7f951182f540056b9cb734c88899912f729";
};
meta = {
description = "A Python module for creating Excel XLSX files";
homepage = https://xlsxwriter.readthedocs.io/;
maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.bsd2;
};
}