1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/foxy/launch-testing-ros/default.nix

24 lines
921 B
Nix

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