12 buildPythonPackage rec {
14 version = "5.2"; # version needs to be compatible with APScheduler
16 disabled = pythonOlder "3.8";
21 inherit pname version;
22 hash = "sha256-jTmSBVePGpNCgWQJzB5GqT69V1XjnqLYUzS+qRG/Dm4=";
25 nativeBuildInputs = [ setuptools ];
35 "test_symlink_localtime"
36 ] ++ lib.optional stdenv.hostPlatform.isDarwin "test_assert_tz_offset";
38 pythonImportsCheck = [ "tzlocal" ];
41 description = "Tzinfo object for the local timezone";
42 homepage = "https://github.com/regebro/tzlocal";
43 changelog = "https://github.com/regebro/tzlocal/blob/${version}/CHANGES.txt";
44 license = licenses.cddl;
45 maintainers = with maintainers; [ dotlambda ];