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

24 lines
994 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, ament-xmllint, launch, launch-xml, launch-yaml, osrf-pycommon, python3Packages }:
buildRosPackage {
pname = "ros-rolling-launch-testing";
version = "3.8.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_testing/3.8.0-1.tar.gz";
name = "3.8.0-1.tar.gz";
sha256 = "6335c0f906398457973d9f9f1c284d1da658d460e7f987e42945afc6416efa2d";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint ];
propagatedBuildInputs = [ ament-index-python launch launch-xml launch-yaml osrf-pycommon python3Packages.pytest ];
meta = {
description = "A package to create tests which involve launch files and multiple processes.";
license = with lib.licenses; [ asl20 ];
};
}