Skip to content

Commit

Permalink
noetic: resource-retriever: add distutils dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed Nov 15, 2024
1 parent f5d1f80 commit 6892f13
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 @@ -117,6 +117,13 @@ rosSelf: rosSuper: with rosSelf.lib; {
sha256 = "sha256-IBlmph3IJvGxh5okozF6HskhSpGMjrA1vi8ww+nPvcs=";
};

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

rosconsole = rosSuper.rosconsole.overrideAttrs ({
patches ? [], ...
}: {
Expand Down

0 comments on commit 6892f13

Please sign in to comment.