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.
This commit is contained in:
tu-maurice
2024-09-01 19:08:22 +02:00
parent f22e565ee4
commit 4fbb84dd8b
+3 -1
View File
@@ -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 { };