depot/third_party/nixpkgs/pkgs/development/python-modules/time-machine/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

53 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonAtLeast
, pythonOlder
, backports-zoneinfo
, python-dateutil
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "time-machine";
version = "2.7.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "adamchainz";
repo = pname;
rev = version;
sha256 = "sha256-bRqljS09IBp/uqbx9hrr1iEwqvAyOWyl4qjKhJqqGzc=";
};
propagatedBuildInputs = [
python-dateutil
] ++ lib.optionals (pythonOlder "3.9") [
backports-zoneinfo
];
checkInputs = [
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.9") [
# 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; {
description = "Travel through time in your tests";
homepage = "https://github.com/adamchainz/time-machine";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}