lol

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>

+5
+5
pkgs/development/python-modules/pygeocodio/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 setuptools, ··· 30 31 ]; 31 32 32 33 pythonImportsCheck = [ "geocodio" ]; 34 + 35 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 36 + "test_timeout" 37 + ]; 33 38 34 39 nativeCheckInputs = [ 35 40 pytestCheckHook