33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
82 lines
1.6 KiB
Nix
82 lines
1.6 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, python-dateutil
|
|
, pytz
|
|
, regex
|
|
, tzlocal
|
|
, hijri-converter
|
|
, convertdate
|
|
, fasttext
|
|
, langdetect
|
|
, parameterized
|
|
, pytestCheckHook
|
|
, gitpython
|
|
, parsel
|
|
, requests
|
|
, ruamel-yaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dateparser";
|
|
version = "1.1.6";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scrapinghub";
|
|
repo = "dateparser";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-rn8RD1nnUi4MhK6QKLaP5eG6UAFrhlecimvn8sAsu6k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python-dateutil
|
|
pytz
|
|
regex
|
|
tzlocal
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
calendars = [ hijri-converter convertdate ];
|
|
fasttext = [ fasttext ];
|
|
langdetect = [ langdetect ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
parameterized
|
|
pytestCheckHook
|
|
gitpython
|
|
parsel
|
|
requests
|
|
ruamel-yaml
|
|
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
|
|
|
|
preCheck = ''
|
|
export HOME="$TEMPDIR"
|
|
'';
|
|
|
|
# Upstream only runs the tests in tests/ in CI, others use git clone
|
|
pytestFlagsArray = [ "tests" ];
|
|
|
|
disabledTests = [
|
|
# access network
|
|
"test_custom_language_detect_fast_text_0"
|
|
"test_custom_language_detect_fast_text_1"
|
|
];
|
|
|
|
pythonImportsCheck = [ "dateparser" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/scrapinghub/dateparser/blob/${src.rev}/HISTORY.rst";
|
|
description = "Date parsing library designed to parse dates from HTML pages";
|
|
homepage = "https://github.com/scrapinghub/dateparser";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|