nixpkgs/pkgs/development/python-modules/dateparser/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
1.6 KiB
Nix
Raw Normal View History

2021-03-10 13:49:50 +00:00
{ lib
, buildPythonPackage
, pythonOlder
2021-03-10 13:49:50 +00:00
, fetchFromGitHub
, fetchpatch
, python-dateutil
, pytz
, regex
2021-03-10 13:49:50 +00:00
, tzlocal
, hijri-converter
, convertdate
, fasttext
, langdetect
2021-03-10 13:49:50 +00:00
, parameterized
, pytestCheckHook
, gitpython
, parsel
, requests
, ruamel-yaml
2020-06-07 13:36:06 +00:00
}:
buildPythonPackage rec {
pname = "dateparser";
version = "1.1.7";
disabled = pythonOlder "3.7";
format = "setuptools";
2021-03-10 13:49:50 +00:00
src = fetchFromGitHub {
owner = "scrapinghub";
repo = "dateparser";
rev = "refs/tags/v${version}";
hash = "sha256-KQCjXuBDBZduNYJITwk1qx7mBp8CJ95ZbFlhrFMkE8w=";
};
propagatedBuildInputs = [
python-dateutil
pytz
regex
tzlocal
];
passthru.optional-dependencies = {
calendars = [ hijri-converter convertdate ];
fasttext = [ fasttext ];
langdetect = [ langdetect ];
};
nativeCheckInputs = [
2021-03-10 13:49:50 +00:00
parameterized
pytestCheckHook
gitpython
parsel
requests
ruamel-yaml
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
2021-03-10 13:49:50 +00:00
preCheck = ''
export HOME="$TEMPDIR"
'';
2021-03-10 13:49:50 +00:00
# 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"
];
2021-03-10 13:49:50 +00:00
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;
2021-03-10 13:49:50 +00:00
maintainers = with maintainers; [ dotlambda ];
};
}