nix-ros-overlay/distros/jazzy/tf2-ros-py/default.nix
Superflore 2435baa8ac
Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
regenerate all distros, Fri May 16 13:35:43 2025
2025-05-31 15:39:42 -04:00

24 lines
910 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.11-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/jazzy/tf2_ros_py/0.36.11-1.tar.gz";
name = "0.36.11-1.tar.gz";
sha256 = "e7eae6f00586efad51db016da2094a4db42626b190218cb05215e29a2c8f0313";
};
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 ];
};
}