2020-05-10 19:36:58 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, isPy27
|
2017-12-30 11:21:21 +00:00
|
|
|
, nose, chai, simplejson, backports_functools_lru_cache
|
2020-06-07 14:38:16 +01:00
|
|
|
, python-dateutil, pytz, pytest-mock, sphinx, dateparser, pytestcov
|
|
|
|
, pytestCheckHook
|
2019-02-14 07:37:10 +00:00
|
|
|
}:
|
2017-07-21 14:10:05 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "arrow";
|
2020-05-09 11:01:43 +01:00
|
|
|
version = "0.15.6";
|
2017-07-21 14:10:05 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:01:43 +01:00
|
|
|
sha256 = "eb5d339f00072cc297d7de252a2e75f272085d1231a3723f1026d1fa91367118";
|
2017-07-21 14:10:05 +01:00
|
|
|
};
|
|
|
|
|
2020-05-10 19:36:58 +01:00
|
|
|
propagatedBuildInputs = [ python-dateutil ]
|
|
|
|
++ lib.optionals isPy27 [ backports_functools_lru_cache ];
|
2017-07-21 14:10:05 +01:00
|
|
|
|
2020-05-10 19:36:58 +01:00
|
|
|
checkInputs = [
|
|
|
|
dateparser
|
2020-06-07 14:38:16 +01:00
|
|
|
pytestCheckHook
|
2020-05-10 19:36:58 +01:00
|
|
|
pytestcov
|
|
|
|
pytest-mock
|
|
|
|
pytz
|
|
|
|
simplejson
|
|
|
|
sphinx
|
|
|
|
];
|
2017-07-21 14:10:05 +01:00
|
|
|
|
2020-06-07 14:38:16 +01:00
|
|
|
# ParserError: Could not parse timezone expression "America/Nuuk"
|
|
|
|
disabledTests = [
|
|
|
|
"test_parse_tz_name_zzz"
|
|
|
|
];
|
2018-01-03 13:33:50 +00:00
|
|
|
|
2020-05-10 19:36:58 +01:00
|
|
|
meta = with lib; {
|
2017-07-21 14:10:05 +01:00
|
|
|
description = "Python library for date manipulation";
|
2020-05-10 19:36:58 +01:00
|
|
|
homepage = "https://github.com/crsmithdev/arrow";
|
2020-04-22 21:40:23 +01:00
|
|
|
license = licenses.asl20;
|
2017-07-21 14:10:05 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|