blob: 8d06c49a0240250bc9d4e8c1cb1c075be1b87698 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-dateutil
11PKG_VERSION:=2.9.0.post0
12PKG_RELEASE:=1
13PKG_LICENSE:=BSD-2-Clause
14
15PYPI_NAME:=$(PKG_NAME)
16PKG_HASH:=37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3
17PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
18
19PKG_BUILD_DEPENDS:=python-setuptools-scm/host
20
21include ../pypi.mk
22include $(INCLUDE_DIR)/package.mk
23
24include ../python3-package.mk
25
26define Package/python3-dateutil
27 SUBMENU:=Python
28 SECTION:=lang
29 CATEGORY:=Languages
30 TITLE:=Extensions to the standard Python datetime module
31 URL:=https://dateutil.readthedocs.org/
32 DEPENDS:=+python3 +python3-six
33endef
34
35define Package/python3-dateutil/description
36 Extensions to the standard Python datetime module
37endef
38
39$(eval $(call Py3Package,python3-dateutil))
40$(eval $(call BuildPackage,python3-dateutil))
41$(eval $(call BuildPackage,python3-dateutil-src))