2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch, launch-testing, osrf-pycommon, python3Packages }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-launch-pytest";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.4.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch_pytest/3.4.3-1.tar.gz";
|
|
|
|
name = "3.4.3-1.tar.gz";
|
|
|
|
sha256 = "1ec1ef5626d24986f459511087a1ea0eff9f7bca087cbed788e6462ffd0a7419";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch ];
|
2025-01-03 13:42:37 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-python launch launch-testing osrf-pycommon python3Packages.pytest ];
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A package to create tests which involve launch files and multiple processes.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|