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.

41 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-dateutil
  9. PKG_VERSION:=2.8.2
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=BSD-2-Clause
  12. PYPI_NAME:=$(PKG_NAME)
  13. PKG_HASH:=0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86
  14. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  15. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-dateutil
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Extensions to the standard Python datetime module
  24. URL:=https://dateutil.readthedocs.org/
  25. DEPENDS:=+python3 +python3-six
  26. endef
  27. define Package/python3-dateutil/description
  28. Extensions to the standard Python datetime module
  29. endef
  30. $(eval $(call Py3Package,python3-dateutil))
  31. $(eval $(call BuildPackage,python3-dateutil))
  32. $(eval $(call BuildPackage,python3-dateutil-src))