nix-ros-overlay/distros/foxy/examples-tf2-py/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

24 lines
844 B
Nix

# Copyright 2023 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";
version = "0.13.14-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/examples_tf2_py/0.13.14-1.tar.gz";
name = "0.13.14-1.tar.gz";
sha256 = "323fa951dcd3524c24237455d2197fa87ae4e0d4209a0a9599a530b9ac442c2b";
};
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 ];
};
}