Skip to content

Commit

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

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

resource-retriever = rosSuper.resource-retriever.overrideAttrs({
nativeBuildInputs ? [], ...
}: {
Expand Down

0 comments on commit b63d9f2

Please sign in to comment.