Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 1 | DESCRIPTION = "Provides modules to easily parse localized dates in almost any string formats commonly found on web pages" |
| 2 | HOMEPAGE = "https://github.com/scrapinghub/dateparser" |
| 3 | LICENSE = "BSD-3-Clause" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051" |
| 5 | |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 6 | SRC_URI[sha256sum] = "86b8b7517efcc558f085a142cdb7620f0921543fcabdb538c8a4c4001d8178e3" |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 7 | |
| 8 | PYPI_PACKAGE = "dateparser" |
| 9 | |
| 10 | inherit pypi setuptools3 |
| 11 | |
| 12 | CLEANBROKEN = "1" |
| 13 | |
| 14 | RDEPENDS:${PN} += " \ |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 15 | python3-dateutil \ |
| 16 | python3-logging \ |
| 17 | python3-pytz \ |
| 18 | python3-regex \ |
| 19 | python3-ruamel-yaml \ |
| 20 | python3-tzlocal \ |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 21 | " |
| 22 | |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 23 | # Ommitted python3-convertdate, python3-jdatetime python3-umalqurra |