We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538d757 commit 536b5c3Copy full SHA for 536b5c3
distros/ros1-overlay.nix
@@ -7,6 +7,14 @@ rosSelf: rosSuper: with rosSelf.lib; {
7
python = rosSelf.python3;
8
pythonPackages = rosSelf.python.pkgs;
9
10
+ python3 = rosSuper.python3 // {
11
+ pkgs = rosSuper.python3.pkgs.overrideScope (pyFinal: pyPrev: {
12
+ # nose is unmaintained and was removed from nixpkgs, but catkin depends
13
+ # on it for tests. We don't run tests, so eliminate this dependency.
14
+ nose = null;
15
+ });
16
+ };
17
+
18
# Fix usages of global Boost placeholders
19
# https://github.com/ros/actionlib/pull/197
20
actionlib = rosSuper.actionlib.overrideAttrs ({
0 commit comments