Commit 5487d605 authored by Robert Schütz's avatar Robert Schütz
Browse files

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

parent d210d833
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
  ];