1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/launch-testing/default.nix

24 lines
968 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, launch-xml, launch-yaml, osrf-pycommon, python3Packages }:
buildRosPackage {
pname = "ros-jazzy-launch-testing";
version = "3.4.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch_testing/3.4.3-1.tar.gz";
name = "3.4.3-1.tar.gz";
sha256 = "7f89506879c8a6c297fc8dfd9b8962e9344d5160cb7ecb1ec36e54ba357c3592";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch ];
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 ];
};
}