python312Packages.posthog: unbreak, remove broken test

This commit is contained in:
Pol Dellaiera
2025-05-08 23:25:07 +02:00
parent c8c4b0d93e
commit f7421375b6

View File

@@ -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 ];
};
}