2021-08-04 20:04:20 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonAtLeast
|
|
|
|
, pythonOlder
|
|
|
|
, backports-zoneinfo
|
|
|
|
, python-dateutil
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "time-machine";
|
2022-01-13 08:17:41 +00:00
|
|
|
version = "2.6.0";
|
2021-11-28 12:51:25 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2022-01-13 08:17:41 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-08-04 20:04:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adamchainz";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-01-13 08:17:41 +00:00
|
|
|
sha256 = "sha256-D3cbArF09b5+LkkdosNbYMfndnzCPWwNqzIww23pOtk=";
|
2021-08-04 20:04:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
python-dateutil
|
2021-11-28 12:51:25 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
2021-08-04 20:04:20 +01:00
|
|
|
backports-zoneinfo
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.9") [
|
|
|
|
# Assertion Errors related to Africa/Addis_Ababa
|
|
|
|
"test_destination_datetime_tzinfo_zoneinfo_nested"
|
2021-11-28 12:51:25 +00:00
|
|
|
"test_destination_datetime_tzinfo_zoneinfo_no_orig_tz"
|
|
|
|
"test_destination_datetime_tzinfo_zoneinfo"
|
2021-08-04 20:04:20 +01:00
|
|
|
"test_move_to_datetime_with_tzinfo_zoneinfo"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"time_machine"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Travel through time in your tests";
|
|
|
|
homepage = "https://github.com/adamchainz/time-machine";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|