mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.XlsxWriter: init at 1.0.2
This commit is contained in:
parent
3eccd0b11d
commit
3b1c0579d6
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;
|
||||
};
|
||||
}
|
@ -24388,6 +24388,8 @@ EOF
|
||||
};
|
||||
};
|
||||
|
||||
XlsxWriter = callPackage ../development/python-modules/XlsxWriter { };
|
||||
|
||||
yowsup = callPackage ../development/python-modules/yowsup { };
|
||||
|
||||
wptserve = callPackage ../development/python-modules/wptserve { };
|
||||
|
Loading…
Reference in New Issue
Block a user