2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, geometry-msgs, pythonPackages, rclpy, sensor-msgs, std-msgs, tf2-msgs, tf2-py }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-tf2-ros-py";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "0.36.6-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/tf2_ros_py/0.36.6-1.tar.gz";
|
|
|
|
name = "0.36.6-1.tar.gz";
|
|
|
|
sha256 = "6bae89a6cf0cf3b7daacb46a2c4efb469866fa3439f15773a06bee148df3d64b";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ pythonPackages.pytest sensor-msgs ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy sensor-msgs std-msgs tf2-msgs tf2-py ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "This package contains the ROS Python bindings for the tf2 library";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|