Commit 4fbb84dd authored by tu-maurice's avatar tu-maurice
Browse files

buck: pin python3 to python311

buck is incompatible with python 3.12 due to the imp module which has been
removed from the standard library in python 3.12. buck is also not in active
development anymore, so there will be no fix for this.
parent f22e565e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -17603,7 +17603,9 @@ with pkgs;
  bob = callPackage ../development/tools/build-managers/bob { };
  buck = callPackage ../development/tools/build-managers/buck { };
  buck = callPackage ../development/tools/build-managers/buck {
    python3 = python311;
  };
  buck2 = callPackage ../development/tools/build-managers/buck2 { };