My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/arrow/default.nix

52 lines
1.0 KiB

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, python-dateutil
, typing-extensions
, pytestCheckHook
, pytest-mock
, pytz
, simplejson
}:
buildPythonPackage rec {
pname = "arrow";
version = "1.2.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Bcrx/T2aEaETWytvCYh0IRU7lFWOXvTQkLVntHFzrCs=";
};
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 ];
};
}