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/humble/launch-testing/default.nix
2022-06-11 13:21:09 -04:00

24 lines
970 B
Nix

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