Skip to content

Commit

Permalink
noetic: add comment about distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed Oct 19, 2024
1 parent ea279f9 commit 20e7f58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions distros/noetic/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
});

Expand Down Expand Up @@ -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 ];
});

Expand All @@ -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 ];
});

Expand Down

0 comments on commit 20e7f58

Please sign in to comment.