2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-11-07 17:17:35 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, unique-identifier-msgs, rclpy, py-trees, sensor-msgs, py-trees-ros-interfaces, rcl-interfaces, python3Packages, std-msgs, ros2topic }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-py-trees-ros";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "1.2.1-r2";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/stonier/py_trees_ros-release/archive/release/dashing/py_trees_ros/1.2.1-2.tar.gz";
|
|
|
|
name = "1.2.1-2.tar.gz";
|
|
|
|
sha256 = "a46a34029b2af275f21b9809f97d69bb743c2c8589026fcdc1f161a15285ac91";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-11-07 17:17:35 -05:00
|
|
|
buildInputs = [ unique-identifier-msgs rclpy ros2topic sensor-msgs python3Packages.setuptools py-trees-ros-interfaces rcl-interfaces std-msgs py-trees ];
|
|
|
|
propagatedBuildInputs = [ unique-identifier-msgs rclpy ros2topic sensor-msgs py-trees-ros-interfaces rcl-interfaces std-msgs py-trees ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS2 extensions and behaviours for py_trees.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|