mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
ros1: get rid of nose dependency
Override 'nose = null' to make catkin evaluate even though nose has been removed from nixpkgs.
This commit is contained in:
parent
538d7578a8
commit
536b5c3f4b
1 changed files with 8 additions and 0 deletions
|
@ -7,6 +7,14 @@ rosSelf: rosSuper: with rosSelf.lib; {
|
||||||
python = rosSelf.python3;
|
python = rosSelf.python3;
|
||||||
pythonPackages = rosSelf.python.pkgs;
|
pythonPackages = rosSelf.python.pkgs;
|
||||||
|
|
||||||
|
python3 = rosSuper.python3 // {
|
||||||
|
pkgs = rosSuper.python3.pkgs.overrideScope (pyFinal: pyPrev: {
|
||||||
|
# nose is unmaintained and was removed from nixpkgs, but catkin depends
|
||||||
|
# on it for tests. We don't run tests, so eliminate this dependency.
|
||||||
|
nose = null;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
# Fix usages of global Boost placeholders
|
# Fix usages of global Boost placeholders
|
||||||
# https://github.com/ros/actionlib/pull/197
|
# https://github.com/ros/actionlib/pull/197
|
||||||
actionlib = rosSuper.actionlib.overrideAttrs ({
|
actionlib = rosSuper.actionlib.overrideAttrs ({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue