diff --git a/pkgs/development/python-modules/posthog/default.nix b/pkgs/development/python-modules/posthog/default.nix index b04e5c841849..032cb278bd3e 100644 --- a/pkgs/development/python-modules/posthog/default.nix +++ b/pkgs/development/python-modules/posthog/default.nix @@ -62,11 +62,17 @@ buildPythonPackage rec { "test_flush_interval" ]; - meta = with lib; { + disabledTestPaths = [ + # Revisit this at the next version bump, issue open upstream + # See https://github.com/PostHog/posthog-python/issues/234 + "posthog/test/ai/openai/test_openai.py" + ]; + + meta = { description = "Module for interacting with PostHog"; homepage = "https://github.com/PostHog/posthog-python"; changelog = "https://github.com/PostHog/posthog-python/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; }