From 9561eb6ddf33fead23563fb3aa29c3ad538c4a32 Mon Sep 17 00:00:00 2001 From: Marius DAVID Date: Wed, 8 Oct 2025 17:53:33 +0200 Subject: [PATCH] python3Packages.explorerscript: Relax pybind11 version (fix compilation) --- pkgs/development/python-modules/explorerscript/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/explorerscript/default.nix b/pkgs/development/python-modules/explorerscript/default.nix index e612e1fe1d9b..9ea011866ca0 100644 --- a/pkgs/development/python-modules/explorerscript/default.nix +++ b/pkgs/development/python-modules/explorerscript/default.nix @@ -28,6 +28,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ + --replace-fail "pybind11>=2.13.6, < 2.14" "pybind11" \ --replace-fail "scikit-build-core>=0.10.7, < 0.11" "scikit-build-core" '';