mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, python-dateutil
|
|
, typing-extensions
|
|
, pytestCheckHook
|
|
, pytest-mock
|
|
, pytz
|
|
, simplejson
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "arrow";
|
|
version = "1.1.1";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "dee7602f6c60e3ec510095b5e301441bc56288cb8f51def14dcb3079f623823a";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
pythonImportsCheck = [ "arrow" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for date manipulation";
|
|
homepage = "https://github.com/crsmithdev/arrow";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|