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

25 lines
911 B
Nix
Raw Normal View History

# 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-rolling-tf2-ros-py";
version = "0.36.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/tf2_ros_py/0.36.0-2.tar.gz";
name = "0.36.0-2.tar.gz";
sha256 = "94415671df00cba6b87c763f81a0acb44410b6ceb0c49687389e91029d5c10d4";
};
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 ];
};
}