mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
24 lines
951 B
Nix
24 lines
951 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-testing, osrf-pycommon, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-launch-pytest";
|
|
version = "1.0.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/humble/launch_pytest/1.0.8-1.tar.gz";
|
|
name = "1.0.8-1.tar.gz";
|
|
sha256 = "31ea09bb743dace67b45800124d629820118c15f77897eb779fbde7fe0fb1d35";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch ];
|
|
propagatedBuildInputs = [ ament-index-python launch launch-testing osrf-pycommon python3Packages.pytest ];
|
|
|
|
meta = {
|
|
description = "A package to create tests which involve launch files and multiple processes.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|