2023-03-17 13:53:56 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-03-17 13:53:56 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, geometry-msgs, py-trees, py-trees-ros-interfaces, python3Packages, rcl-interfaces, rclpy, ros2topic, sensor-msgs, std-msgs, tf2-ros-py, unique-identifier-msgs }:
|
2023-03-17 13:53:56 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-py-trees-ros";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "2.2.2-r3";
|
2023-03-17 13:53:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/py_trees_ros-release/archive/release/rolling/py_trees_ros/2.2.2-3.tar.gz";
|
|
|
|
name = "2.2.2-3.tar.gz";
|
|
|
|
sha256 = "3c6fa3434c8d89a0eec1df8cee79dfac735452c9d3154975eb216bd1a4993577";
|
2023-03-17 13:53:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
buildInputs = [ python3Packages.setuptools ];
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ python3Packages.pytest ];
|
2023-03-17 13:53:56 +00:00
|
|
|
propagatedBuildInputs = [ geometry-msgs py-trees py-trees-ros-interfaces rcl-interfaces rclpy ros2topic sensor-msgs std-msgs tf2-ros-py unique-identifier-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "ROS2 extensions and behaviours for py_trees.";
|
2023-03-17 13:53:56 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|