noetic: add comment about distutils

This commit is contained in:
Ben Wolsieffer 2024-10-19 12:25:59 -04:00
parent ea279f9b6d
commit 20e7f58b73

View file

@ -6,6 +6,7 @@ rosSelf: rosSuper: with rosSelf.lib; {
angles = rosSuper.angles.overrideAttrs({
nativeBuildInputs ? [], ...
}: {
# distutils was removed from standard library in Python 3.12
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
});
@ -130,6 +131,7 @@ rosSelf: rosSuper: with rosSelf.lib; {
ros-numpy = rosSuper.ros-numpy.overrideAttrs({
nativeBuildInputs ? [], ...
}: {
# distutils was removed from standard library in Python 3.12
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
});
@ -141,6 +143,7 @@ rosSelf: rosSuper: with rosSelf.lib; {
roslint = rosSuper.roslint.overrideAttrs({
nativeBuildInputs ? [], ...
}: {
# distutils was removed from standard library in Python 3.12
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
});