nix-ros-overlay/distros/humble/examples-rclpy-minimal-action-server/default.nix

24 lines
904 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, example-interfaces, python3Packages, rclpy }:
buildRosPackage {
pname = "ros-humble-examples-rclpy-minimal-action-server";
version = "0.15.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/humble/examples_rclpy_minimal_action_server/0.15.3-1.tar.gz";
name = "0.15.3-1.tar.gz";
sha256 = "ba74af931c66cfcadcd2450acc09523f075f32617b105894bb30e421d8fbf8b1";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ example-interfaces rclpy ];
meta = {
description = "Examples of minimal action servers using rclpy.";
license = with lib.licenses; [ asl20 ];
};
}