# Copyright 2024 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, action-msgs, ament-copyright, ament-flake8, ament-pep257, example-interfaces, pythonPackages, rclpy }: buildRosPackage { pname = "ros-iron-examples-rclpy-minimal-action-client"; version = "0.18.2-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/examples-release/archive/release/iron/examples_rclpy_minimal_action_client/0.18.2-1.tar.gz"; name = "0.18.2-1.tar.gz"; sha256 = "45cb124b418099f3ea0eab66e7a06232e95aad5b61acd64849bfb9cec4bfbcef"; }; buildType = "ament_python"; checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ]; propagatedBuildInputs = [ action-msgs example-interfaces rclpy ]; meta = { description = "Examples of minimal action clients using rclpy."; license = with lib.licenses; [ asl20 ]; }; }