2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch-ros, pythonPackages, tf2-ros }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-examples-tf2-py";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.13.9-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/examples_tf2_py/0.13.9-1.tar.gz";
|
|
|
|
name = "0.13.9-1.tar.gz";
|
|
|
|
sha256 = "e0109a67e5704548c7114842edae11ded6dd3f246bf8d8059409ca9ed4e2b064";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ launch-ros tf2-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Has examples of using the tf2 Python API.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|