nix-ros-overlay/distros/jazzy/launch-testing-ros/default.nix

24 lines
962 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch-ros, launch-testing, python3Packages, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-launch-testing-ros";
version = "0.26.7-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/jazzy/launch_testing_ros/0.26.7-1.tar.gz";
name = "0.26.7-1.tar.gz";
sha256 = "db4e4722cb052857b64bc8a646829aa9c2ed46df1bbe58e27e6a5f3555d95ef6";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest std-msgs ];
propagatedBuildInputs = [ ament-index-python launch-ros launch-testing rclpy ];
meta = {
description = "A package providing utilities for writing ROS2 enabled launch tests.";
license = with lib.licenses; [ asl20 ];
};
}