blob: ac76ccc96a56f2f7d537d0756390fde312544f9b [file] [log] [blame]
Andrew Geissler89770b02020-06-13 10:40:47 -05001SUMMARY = "Extensions to the standard Python datetime module"
2DESCRIPTION = "The dateutil module provides powerful extensions to the datetime module available in the Python standard library."
3HOMEPAGE = "https://dateutil.readthedocs.org"
4LICENSE = "BSD-3-Clause & Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=e3155c7bdc71f66e02678411d2abf996"
6
Patrick Williamsb58112e2024-03-07 11:16:36 -06007SRC_URI[sha256sum] = "78e73e19c63f5b20ffa567001531680d939dc042bf7850431877645523c66709"
Andrew Geissler89770b02020-06-13 10:40:47 -05008
9PYPI_PACKAGE = "python-dateutil"
Andrew Geissler9aee5002022-03-30 16:27:02 +000010inherit pypi python_setuptools_build_meta
Andrew Geissler89770b02020-06-13 10:40:47 -050011
12PACKAGES =+ "${PN}-zoneinfo"
Patrick Williams213cb262021-08-07 19:21:33 -050013FILES:${PN}-zoneinfo = "${libdir}/${PYTHON_DIR}/site-packages/dateutil/zoneinfo"
Andrew Geissler89770b02020-06-13 10:40:47 -050014
Patrick Williams39653562024-03-01 08:54:02 -060015DEPENDS += "python3-setuptools-scm-native"
Andrew Geissler89770b02020-06-13 10:40:47 -050016
Patrick Williams213cb262021-08-07 19:21:33 -050017RDEPENDS:${PN} = "\
Patrick Williams39653562024-03-01 08:54:02 -060018 python3-datetime \
19 python3-numbers \
20 python3-six \
21 python3-stringold \
Andrew Geissler89770b02020-06-13 10:40:47 -050022"
23
Andrew Geisslera2681d92020-10-16 10:17:07 -050024BBCLASSEXTEND = "native nativesdk"