10 buildPythonPackage rec {
11 pname = "parsedatetime";
13 format = "setuptools";
14 disabled = isPy27; # no longer compatible with icu package
17 inherit pname version;
18 sha256 = "4cb368fbb18a0b7231f4d76119165451c8d2e35951455dfee97c62a87b04d455";
21 propagatedBuildInputs = [ future ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pytestFlagsArray = [ "tests/Test*.py" ];
28 # https://github.com/bear/parsedatetime/issues/263
29 "testDate3ConfusedHourAndYear"
30 # https://github.com/bear/parsedatetime/issues/215
34 pythonImportsCheck = [ "parsedatetime" ];
37 description = "Parse human-readable date/time text";
38 homepage = "https://github.com/bear/parsedatetime";
39 license = licenses.asl20;