python312Packages.posthog: unbreak, remove broken test (#405374)

authored by Pol Dellaiera and committed by GitHub 15aee9e4 7b3c99fb

+9 -3
+9 -3
pkgs/development/python-modules/posthog/default.nix
··· 62 62 "test_flush_interval" 63 63 ]; 64 64 65 - meta = with lib; { 65 + disabledTestPaths = [ 66 + # Revisit this at the next version bump, issue open upstream 67 + # See https://github.com/PostHog/posthog-python/issues/234 68 + "posthog/test/ai/openai/test_openai.py" 69 + ]; 70 + 71 + meta = { 66 72 description = "Module for interacting with PostHog"; 67 73 homepage = "https://github.com/PostHog/posthog-python"; 68 74 changelog = "https://github.com/PostHog/posthog-python/blob/${src.tag}/CHANGELOG.md"; 69 - license = licenses.mit; 70 - maintainers = with maintainers; [ happysalada ]; 75 + license = lib.licenses.mit; 76 + maintainers = with lib.maintainers; [ happysalada ]; 71 77 }; 72 78 }