Skip to content

Commit

Permalink
noetic: rosserial-python: add distutils dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed Nov 15, 2024
1 parent 43460df commit 83714f3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions distros/noetic/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ rosSelf: rosSuper: with rosSelf.lib; {
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
});

rosserial-python = rosSuper.rosserial-python.overrideAttrs({
nativeBuildInputs ? [], ...
}: {
# distutils was removed from standard library in Python 3.12
nativeBuildInputs = nativeBuildInputs ++ [ rosSelf.python3Packages.distutils ];
});

rviz-map-plugin = rosSuper.rviz-map-plugin.overrideAttrs ({
buildInputs ? [], ...
} : {
Expand Down

0 comments on commit 83714f3

Please sign in to comment.