5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonAtLeast,
|
|
pythonOlder,
|
|
setuptools,
|
|
backports-zoneinfo,
|
|
python-dateutil,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "time-machine";
|
|
version = "2.14.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adamchainz";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-u5RxNv+hsL+0yxtiWeYHtmMQY7bvb8WY7ipouj+IZJ8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
python-dateutil
|
|
] ++ lib.optionals (pythonOlder "3.9") [ backports-zoneinfo ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.9") [
|
|
# https://github.com/adamchainz/time-machine/issues/405
|
|
"test_destination_string_naive"
|
|
# Assertion Errors related to Africa/Addis_Ababa
|
|
"test_destination_datetime_tzinfo_zoneinfo_nested"
|
|
"test_destination_datetime_tzinfo_zoneinfo_no_orig_tz"
|
|
"test_destination_datetime_tzinfo_zoneinfo"
|
|
"test_move_to_datetime_with_tzinfo_zoneinfo"
|
|
];
|
|
|
|
pythonImportsCheck = [ "time_machine" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/adamchainz/time-machine/blob/${src.rev}/CHANGELOG.rst";
|
|
description = "Travel through time in your tests";
|
|
homepage = "https://github.com/adamchainz/time-machine";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|