You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

  1. #
  2. # Copyright (C) 2007-2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-openpyxl
  9. PKG_VERSION:=3.0.5
  10. PKG_RELEASE:=1
  11. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  12. PKG_LICENSE:=MIT
  13. PKG_LICENSE_FILES:=LICENCE.rst
  14. PYPI_NAME:=openpyxl
  15. PKG_HASH:=18e11f9a650128a12580a58e3daba14e00a11d9e907c554a17ea016bf1a2c71b
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-openpyxl
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=A Python library to read/write Excel 2010 xlsx/xlsm files
  24. URL:=https://openpyxl.readthedocs.org/
  25. DEPENDS:=+python3 +python3-defusedxml +python3-et_xmlfile +python3-jdcal
  26. endef
  27. define Package/python3-openpyxl/description
  28. A Python library to read/write Excel 2010 xlsx/xlsm files
  29. endef
  30. $(eval $(call Py3Package,python3-openpyxl))
  31. $(eval $(call BuildPackage,python3-openpyxl))
  32. $(eval $(call BuildPackage,python3-openpyxl-src))