diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2016-06-06 14:47:12 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-06-07 13:12:32 +0200 |
commit | 297b07d88ab0dfaaadbdecc814d458f8cbc6237e (patch) | |
tree | 4721425d896735c6c7d73669588c8f56bb89ad37 /package/python-xlsxwriter | |
parent | eda11417beaf360d48ae5e1d294cf3298b28ef36 (diff) | |
download | buildroot-297b07d88ab0dfaaadbdecc814d458f8cbc6237e.tar.gz buildroot-297b07d88ab0dfaaadbdecc814d458f8cbc6237e.zip |
python-xlsxwriter: new package
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-xlsxwriter')
-rw-r--r-- | package/python-xlsxwriter/Config.in | 8 | ||||
-rw-r--r-- | package/python-xlsxwriter/python-xlsxwriter.hash | 4 | ||||
-rw-r--r-- | package/python-xlsxwriter/python-xlsxwriter.mk | 14 |
3 files changed, 26 insertions, 0 deletions
diff --git a/package/python-xlsxwriter/Config.in b/package/python-xlsxwriter/Config.in new file mode 100644 index 0000000000..3641bd0525 --- /dev/null +++ b/package/python-xlsxwriter/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_PYTHON_XLSXWRITER + bool "python-xlsxwriter" + select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON + select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3 + help + A Python module for creating Excel XLSX files. + + https://github.com/jmcnamara/XlsxWriter diff --git a/package/python-xlsxwriter/python-xlsxwriter.hash b/package/python-xlsxwriter/python-xlsxwriter.hash new file mode 100644 index 0000000000..69bfc6f7bb --- /dev/null +++ b/package/python-xlsxwriter/python-xlsxwriter.hash @@ -0,0 +1,4 @@ +# md5 from https://pypi.python.org/pypi/XlsxWriter/json +md5 545c938f279abcfd7f11e705012302fe XlsxWriter-0.8.9.tar.gz +# sha256 locally computed +sha256 cb90c5283b88af72549adf82f203d15623a0f4faeae29b6a20733e187dfde882 XlsxWriter-0.8.9.tar.gz diff --git a/package/python-xlsxwriter/python-xlsxwriter.mk b/package/python-xlsxwriter/python-xlsxwriter.mk new file mode 100644 index 0000000000..af911cc03a --- /dev/null +++ b/package/python-xlsxwriter/python-xlsxwriter.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-xlsxwriter +# +################################################################################ + +PYTHON_XLSXWRITER_VERSION = 0.8.9 +PYTHON_XLSXWRITER_SOURCE = XlsxWriter-$(PYTHON_XLSXWRITER_VERSION).tar.gz +PYTHON_XLSXWRITER_SITE = https://pypi.python.org/packages/2a/de/4ee20ac103417662865e0e3acde859b002c13f52af0d50a2664d3eca5897 +PYTHON_XLSXWRITER_SETUP_TYPE = setuptools +PYTHON_XLSXWRITER_LICENSE = BSD-2c +PYTHON_XLSXWRITER_LICENSE_FILES = LICENSE.txt + +$(eval $(python-package)) |