diff --git a/pkgs/development/python-modules/zodb/default.nix b/pkgs/development/python-modules/zodb/default.nix index a5057f5b0245..a35d8ed7f009 100644 --- a/pkgs/development/python-modules/zodb/default.nix +++ b/pkgs/development/python-modules/zodb/default.nix @@ -38,6 +38,9 @@ buildPythonPackage (finalAttrs: { postPatch = '' # remove broken test rm -vf src/ZODB/tests/testdocumentation.py + # remove setuptools version check + substituteInPlace pyproject.toml \ + --replace-fail "setuptools >= 78.1.1,< 81" "setuptools" '' + lib.optionalString (pythonAtLeast "3.14") '' # remove broken under python 3.14