python-xlsxwriter: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-06-06 14:47:12 +02:00 committed by Thomas Petazzoni
parent eda11417be
commit 297b07d88a
4 changed files with 27 additions and 0 deletions

View file

@ -765,6 +765,7 @@ menu "External python modules"
source "package/python-werkzeug/Config.in"
source "package/python-ws4py/Config.in"
source "package/python-wsaccel/Config.in"
source "package/python-xlsxwriter/Config.in"
source "package/python-zope-interface/Config.in"
endmenu
endif

View file

@ -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

View file

@ -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

View file

@ -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))