2020-07-24 13:00:10 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-24 13:00:10 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, geometry-msgs, py-trees, py-trees-ros-interfaces, python3Packages, pythonPackages, rcl-interfaces, rclpy, ros2topic, sensor-msgs, std-msgs, tf2-ros, unique-identifier-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-py-trees-ros";
|
2021-05-28 23:33:17 +00:00
|
|
|
version = "2.1.1-r3";
|
2020-07-24 13:00:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-28 23:33:17 +00:00
|
|
|
url = "https://github.com/stonier/py_trees_ros-release/archive/release/foxy/py_trees_ros/2.1.1-3.tar.gz";
|
|
|
|
name = "2.1.1-3.tar.gz";
|
|
|
|
sha256 = "1c6cbab03fd44a3c03dd7e5901f4d3e9aa0cfacf756cd923d44ecc43be847c03";
|
2020-07-24 13:00:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
buildInputs = [ python3Packages.setuptools ];
|
|
|
|
checkInputs = [ pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs py-trees py-trees-ros-interfaces rcl-interfaces rclpy ros2topic sensor-msgs std-msgs tf2-ros unique-identifier-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS2 extensions and behaviours for py_trees.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|