From 2ac481bc3e349357ba560b2d6c51bdb1348f6e6d Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 22 Apr 2025 18:15:30 +0300 Subject: [PATCH] python312Packages.pandas: remove leading `\` in postPatch Makes adding a new command to `postPatch` not get interpreted as another `substituteInPlace` argument. --- pkgs/development/python-modules/pandas/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index 122d5d1b538d..2cb644c2cd49 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -87,7 +87,7 @@ let postPatch = '' substituteInPlace pyproject.toml \ --replace-fail "meson-python==0.13.1" "meson-python>=0.13.1" \ - --replace-fail "meson==1.2.1" "meson>=1.2.1" \ + --replace-fail "meson==1.2.1" "meson>=1.2.1" ''; nativeBuildInputs = [