From 28d31e8fbb2cdf56c9a1f79dbfd05edd13aed94a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 14 Oct 2022 02:00:16 +0200 Subject: [PATCH] python3Packages.pytz-deprecation-shim: Disable failing test --- .../python-modules/pytz-deprecation-shim/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pytz-deprecation-shim/default.nix b/pkgs/development/python-modules/pytz-deprecation-shim/default.nix index e438936f7e49..6ea1c2c8f2e0 100644 --- a/pkgs/development/python-modules/pytz-deprecation-shim/default.nix +++ b/pkgs/development/python-modules/pytz-deprecation-shim/default.nix @@ -43,6 +43,10 @@ buildPythonPackage rec { # https://github.com/pganssle/pytz-deprecation-shim/issues/27 doCheck = pythonAtLeast "3.9"; + disabledTests = [ + "test_localize_explicit_is_dst" + ]; + meta = with lib; { description = "Shims to make deprecation of pytz easier"; homepage = "https://github.com/pganssle/pytz-deprecation-shim";