2021-08-08 23:34:03 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonAtLeast
|
|
|
|
, pythonOlder
|
2024-01-13 08:15:51 +00:00
|
|
|
, setuptools
|
2021-08-08 23:34:03 +00:00
|
|
|
, backports-zoneinfo
|
|
|
|
, python-dateutil
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "time-machine";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "2.13.0";
|
|
|
|
pyproject = true;
|
2021-12-06 16:07:01 +00:00
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2021-08-08 23:34:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adamchainz";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-SjenPLLr4JoWK5HAokwgW+bw3mfAZiuDb1N7Za5wtrw=";
|
2021-08-08 23:34:03 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
python-dateutil
|
2021-12-06 16:07:01 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
2021-08-08 23:34:03 +00:00
|
|
|
backports-zoneinfo
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-08-08 23:34:03 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.9") [
|
2024-01-13 08:15:51 +00:00
|
|
|
# https://github.com/adamchainz/time-machine/issues/405
|
|
|
|
"test_destination_string_naive"
|
2021-08-08 23:34:03 +00:00
|
|
|
# Assertion Errors related to Africa/Addis_Ababa
|
|
|
|
"test_destination_datetime_tzinfo_zoneinfo_nested"
|
2021-12-06 16:07:01 +00:00
|
|
|
"test_destination_datetime_tzinfo_zoneinfo_no_orig_tz"
|
|
|
|
"test_destination_datetime_tzinfo_zoneinfo"
|
2021-08-08 23:34:03 +00:00
|
|
|
"test_move_to_datetime_with_tzinfo_zoneinfo"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"time_machine"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-01-13 08:15:51 +00:00
|
|
|
changelog = "https://github.com/adamchainz/time-machine/blob/${src.rev}/CHANGELOG.rst";
|
2021-08-08 23:34:03 +00:00
|
|
|
description = "Travel through time in your tests";
|
|
|
|
homepage = "https://github.com/adamchainz/time-machine";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|