1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/eloquent/examples-tf2-py/default.nix

24 lines
849 B
Nix

# 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-eloquent-examples-tf2-py";
version = "0.12.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/eloquent/examples_tf2_py/0.12.6-1.tar.gz";
name = "0.12.6-1.tar.gz";
sha256 = "3dc1c882f07f65f7aea4a76ee4bff47e2a6b5aa0c028b30407e1ce14ab6a6761";
};
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 ];
};
}