1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
python-dateutil,
pytz,
regex,
tzlocal,
hijridate,
convertdate,
fasttext,
langdetect,
parameterized,
pytestCheckHook,
gitpython,
parsel,
requests,
ruamel-yaml,
}:
buildPythonPackage rec {
pname = "dateparser";
version = "1.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "scrapinghub";
repo = "dateparser";
tag = "v${version}";
hash = "sha256-cUbY6c0JFzs1oZJOTnMXz3uCah2f50g8/3uWQXtwiGY=";
};
patches = [
(fetchpatch {
# https://github.com/scrapinghub/dateparser/pull/1294
url = "https://github.com/scrapinghub/dateparser/commit/6b23348b9367d43bebc9a40b00dda3363eb2acd5.patch";
hash = "sha256-LriRbGdYxF51Nwrm7Dp4kivyMikzmhytNQo0txMGsVI=";
})
];
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
python-dateutil
pytz
regex
tzlocal
];
optional-dependencies = {
calendars = [
hijridate
convertdate
];
fasttext = [ fasttext ];
langdetect = [ langdetect ];
};
nativeCheckInputs = [
parameterized
pytestCheckHook
gitpython
parsel
requests
ruamel-yaml
]
++ lib.concatAttrValues optional-dependencies;
preCheck = ''
export HOME="$TEMPDIR"
'';
# Upstream only runs the tests in tests/ in CI, others use git clone
enabledTestPaths = [ "tests" ];
disabledTests = [
# access network
"test_custom_language_detect_fast_text_0"
"test_custom_language_detect_fast_text_1"
# breaks with latest tzdata: https://github.com/scrapinghub/dateparser/issues/1237
# FIXME: look into this more
"test_relative_base"
];
pythonImportsCheck = [ "dateparser" ];
meta = {
changelog = "https://github.com/scrapinghub/dateparser/blob/${src.tag}/HISTORY.rst";
description = "Date parsing library designed to parse dates from HTML pages";
homepage = "https://github.com/scrapinghub/dateparser";
license = lib.licenses.bsd3;
mainProgram = "dateparser-download";
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|