mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Merge pull request #32662 from jluttine/add-xlsxwriter
pythonPackages.XlsxWriter: init at 1.0.2
This commit is contained in:
commit
97f9bfd280
19
pkgs/development/python-modules/XlsxWriter/default.nix
Normal file
19
pkgs/development/python-modules/XlsxWriter/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -23232,6 +23232,8 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
XlsxWriter = callPackage ../development/python-modules/XlsxWriter { };
|
||||
|
||||
yowsup = callPackage ../development/python-modules/yowsup { };
|
||||
|
||||
wptserve = callPackage ../development/python-modules/wptserve { };
|
||||
|
|
Loading…
Reference in a new issue