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 <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards
2025-05-04 22:57:08 -04:00
parent 374b5fab08
commit 4f083f7273
@@ -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
];