2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, launch-ros, pythonPackages, rclpy, sensor-msgs, tf2-ros-py }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-examples-tf2-py";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "0.31.4-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/iron/examples_tf2_py/0.31.4-1.tar.gz";
|
|
|
|
name = "0.31.4-1.tar.gz";
|
|
|
|
sha256 = "a9d25d130d1724296117fdf7d302520c3ba12ca2a2ecdd8b8c5c712cb4450f42";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs launch-ros rclpy sensor-msgs tf2-ros-py ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Has examples of using the tf2 Python API.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|