2021-05-08 10:57:10 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
, python-dateutil
|
|
|
|
, typing-extensions
|
2020-06-07 13:38:16 +00:00
|
|
|
, pytestCheckHook
|
2021-05-08 10:57:10 +00:00
|
|
|
, pytest-mock
|
|
|
|
, pytz
|
|
|
|
, simplejson
|
2019-02-14 07:37:10 +00:00
|
|
|
}:
|
2017-07-21 13:10:05 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "arrow";
|
2021-10-08 22:22:56 +00:00
|
|
|
version = "1.2.0";
|
2017-07-21 13:10:05 +00:00
|
|
|
|
2021-05-08 10:57:10 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
2017-07-21 13:10:05 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 22:22:56 +00:00
|
|
|
sha256 = "16fc29bbd9e425e3eb0fef3018297910a0f4568f21116fc31771e2760a50e074";
|
2017-07-21 13:10:05 +00:00
|
|
|
};
|
|
|
|
|
2021-05-08 10:57:10 +00:00
|
|
|
postPatch = ''
|
|
|
|
# no coverage reports
|
|
|
|
sed -i "/addopts/d" tox.ini
|
|
|
|
'';
|
|
|
|
|
2020-05-10 18:36:58 +00:00
|
|
|
propagatedBuildInputs = [ python-dateutil ]
|
2021-05-08 10:57:10 +00:00
|
|
|
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
|
2017-07-21 13:10:05 +00:00
|
|
|
|
2020-05-10 18:36:58 +00:00
|
|
|
checkInputs = [
|
2020-06-07 13:38:16 +00:00
|
|
|
pytestCheckHook
|
2020-05-10 18:36:58 +00:00
|
|
|
pytest-mock
|
|
|
|
pytz
|
|
|
|
simplejson
|
|
|
|
];
|
2017-07-21 13:10:05 +00:00
|
|
|
|
2020-06-07 13:38:16 +00:00
|
|
|
# ParserError: Could not parse timezone expression "America/Nuuk"
|
|
|
|
disabledTests = [
|
|
|
|
"test_parse_tz_name_zzz"
|
|
|
|
];
|
2018-01-03 13:33:50 +00:00
|
|
|
|
2021-05-02 09:19:37 +00:00
|
|
|
pythonImportsCheck = [ "arrow" ];
|
|
|
|
|
2020-05-10 18:36:58 +00:00
|
|
|
meta = with lib; {
|
2017-07-21 13:10:05 +00:00
|
|
|
description = "Python library for date manipulation";
|
2020-05-10 18:36:58 +00:00
|
|
|
homepage = "https://github.com/crsmithdev/arrow";
|
2020-04-22 20:40:23 +00:00
|
|
|
license = licenses.asl20;
|
2017-07-21 13:10:05 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|