Skip to content

Commit

Permalink
Merge pull request #32662 from jluttine/add-xlsxwriter
Browse files Browse the repository at this point in the history
pythonPackages.XlsxWriter: init at 1.0.2
  • Loading branch information
orivej authored Dec 16, 2017
2 parents 24a85f9 + 3b1c057 commit 97f9bfd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pkgs/development/python-modules/XlsxWriter/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{lib, buildPythonPackage, fetchPypi}:

buildPythonPackage rec {
name = "${pname}-${version}";
pname = "XlsxWriter";
version = "1.0.2";

src = fetchPypi {
inherit pname version;
sha256 = "0mpq4l1jfghdqx2vzbzl9v28vw69lkx5vz9gb77gzaw8zypvnsx2";
};

meta = {
description = "A Python module for creating Excel XLSX files";
homepage = https://xlsxwriter.readthedocs.io/;
maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.bsd2;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23232,6 +23232,8 @@ EOF
};
};

XlsxWriter = callPackage ../development/python-modules/XlsxWriter { };

yowsup = callPackage ../development/python-modules/yowsup { };

wptserve = callPackage ../development/python-modules/wptserve { };
Expand Down

0 comments on commit 97f9bfd

Please sign in to comment.