2024-10-04 13:25:33 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-10-04 13:25:33 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, irobot-create-msgs, python3Packages, sensor-msgs, std-msgs, turtlebot4-msgs }:
|
2024-10-04 13:25:33 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-turtlebot4-tests";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "2.0.1-r2";
|
2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/ros2-gbp/turtlebot4_robot-release/archive/release/jazzy/turtlebot4_tests/2.0.1-2.tar.gz";
|
|
|
|
name = "2.0.1-2.tar.gz";
|
|
|
|
sha256 = "d17e8eb3d77d0a0e48b68039759d4b96387c4bc7cf54c404e3425a4ed8107242";
|
2024-10-04 13:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
2024-10-04 13:25:33 +00:00
|
|
|
propagatedBuildInputs = [ irobot-create-msgs python3Packages.psutil sensor-msgs std-msgs turtlebot4-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Turtlebot4 System Tests";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|