2022-06-09 18:50:37 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 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-09-22 13:12:15 +00:00
|
|
|
version = "0.25.4-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-22 13:12:15 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/examples_tf2_py/0.25.4-1.tar.gz";
|
|
|
|
name = "0.25.4-1.tar.gz";
|
|
|
|
sha256 = "e3cd1d0fab414e156d9da8ee72877b871f64e89820df9350f7733321c2b7bbd7";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|