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, py-trees, py-trees-ros, py-trees-ros-interfaces, python3Packages, rcl-interfaces, rclpy, scenario-execution, scenario-execution-py-trees-ros, visualization-msgs, xacro }:
|
2024-10-04 13:25:33 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-scenario-execution-ros";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "1.2.0-r5";
|
2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/scenario_execution-release/archive/release/jazzy/scenario_execution_ros/1.2.0-5.tar.gz";
|
|
|
|
name = "1.2.0-5.tar.gz";
|
|
|
|
sha256 = "4f136a45109ede555762270b7a2b042299c8955737a540fa54845c211bfd9101";
|
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 = [ py-trees py-trees-ros py-trees-ros-interfaces python3Packages.transforms3d rcl-interfaces rclpy scenario-execution scenario-execution-py-trees-ros visualization-msgs xacro ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Scenario Execution for ROS";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|