From 4f083f72731d109f6edf25977e8c22dc561e3487 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Sun, 4 May 2025 22:48:17 -0400 Subject: [PATCH] python3Packages.pygeocodio: fix darwin build for ZHF Disabled a test that was failing on Darwin due to threading issues. Signed-off-by: Ethan Carter Edwards --- pkgs/development/python-modules/pygeocodio/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pygeocodio/default.nix b/pkgs/development/python-modules/pygeocodio/default.nix index f3fd671ed513..6f23fa579352 100644 --- a/pkgs/development/python-modules/pygeocodio/default.nix +++ b/pkgs/development/python-modules/pygeocodio/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, setuptools, @@ -31,6 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "geocodio" ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + "test_timeout" + ]; + nativeCheckInputs = [ pytestCheckHook ];