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

53 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, python-dateutil
, typing-extensions
, pytestCheckHook
, pytest-mock
, pytz
, simplejson
2019-02-14 07:37:10 +00:00
}:
buildPythonPackage rec {
pname = "arrow";
2021-10-08 22:22:56 +00:00
version = "1.2.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
2021-10-08 22:22:56 +00:00
sha256 = "16fc29bbd9e425e3eb0fef3018297910a0f4568f21116fc31771e2760a50e074";
};
postPatch = ''
# no coverage reports
sed -i "/addopts/d" tox.ini
'';
propagatedBuildInputs = [ python-dateutil ]
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
checkInputs = [
pytestCheckHook
pytest-mock
pytz
simplejson
];
# 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" ];
meta = with lib; {
description = "Python library for date manipulation";
homepage = "https://github.com/crsmithdev/arrow";
license = licenses.asl20;
maintainers = with maintainers; [ thoughtpolice ];
};
}