1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python3Packages.tzlocal: disable test_assert_tz_offset test on darwin

This commit is contained in:
Ben Siraphob 2021-12-26 23:02:57 +07:00
parent 14fc00eddc
commit 1a16e31095
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
@ -31,7 +32,7 @@ buildPythonPackage rec {
"test_conflicting"
"test_noconflict"
"test_symlink_localtime"
];
] ++ lib.optional stdenv.isDarwin "test_assert_tz_offset";
pythonImportsCheck = [ "tzlocal" ];