1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/tf2-ros-py/default.nix

24 lines
907 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, builtin-interfaces, geometry-msgs, python3Packages, rclpy, sensor-msgs, std-msgs, tf2-msgs, tf2-py }:
buildRosPackage {
pname = "ros-jazzy-tf2-ros-py";
version = "0.36.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/tf2_ros_py/0.36.8-1.tar.gz";
name = "0.36.8-1.tar.gz";
sha256 = "b75bcf8a926f6d0342166306c989ed491585a9647796b74830b2845f143b05bd";
};
buildType = "ament_python";
checkInputs = [ python3Packages.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 ];
};
}