2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch-ros, launch-testing, pythonPackages, rclpy, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-launch-testing-ros";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "0.26.6-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/jazzy/launch_testing_ros/0.26.6-1.tar.gz";
|
|
|
|
name = "0.26.6-1.tar.gz";
|
|
|
|
sha256 = "7c95d2a9674e94388b8418804af7325261beeeb065f2ffce59fc5b36ec403a20";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest std-msgs ];
|
|
|
|
propagatedBuildInputs = [ ament-index-python launch-ros launch-testing rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A package providing utilities for writing ROS2 enabled launch tests.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|