2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch-ros, pythonPackages, tf2-ros-py }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-examples-tf2-py";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "0.25.5-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/examples_tf2_py/0.25.5-1.tar.gz";
|
|
|
|
name = "0.25.5-1.tar.gz";
|
|
|
|
sha256 = "37d1db1a386eac3d54409b2b8d1802abb93cea5a5e2cf8058154ac0a6901e418";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ launch-ros tf2-ros-py ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Has examples of using the tf2 Python API.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|