# 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-jazzy-examples-rclpy-minimal-action-client"; version = "0.19.4-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/examples_rclpy_minimal_action_client/0.19.4-1.tar.gz"; name = "0.19.4-1.tar.gz"; sha256 = "424582260f6cd39203379398b8a61c606086f49efbb0e1699f2fa45e8654a944"; }; 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 ]; }; }