2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, rclpy, test-msgs }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ros2cli";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "0.32.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/jazzy/ros2cli/0.32.2-1.tar.gz";
|
|
|
|
name = "0.32.2-1.tar.gz";
|
|
|
|
sha256 = "a5c4e28d8d77457f5eeb0e885fe362605193e483f631c55b288c825e09f97a43";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint python3Packages.pytest python3Packages.pytest-timeout test-msgs ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ python3Packages.argcomplete python3Packages.importlib-metadata python3Packages.packaging python3Packages.psutil python3Packages.setuptools rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Framework for ROS 2 command line tools.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|