noetic: resource-retriever: add distutils dependency

This commit is contained in:
Ben Wolsieffer 2024-11-14 22:09:45 -05:00
parent f5d1f80b63
commit 6892f13ec1

View file

@ -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 ? [], ...
}: {