python3Packages.starlette-compress: only use zstandard for Python < 3.14

This commit is contained in:
Robert Schütz
2026-01-09 02:48:39 -08:00
parent d210d8337c
commit 5487d6059b
@@ -7,6 +7,7 @@
brotli,
brotlicffi,
starlette,
pythonOlder,
zstandard,
pytestCheckHook,
httpx,
@@ -30,6 +31,8 @@ buildPythonPackage rec {
dependencies = [
(if isPyPy then brotlicffi else brotli)
starlette
]
++ lib.optionals (pythonOlder "3.14") [
zstandard
];