mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
929 B
Nix
24 lines
929 B
Nix
|
|
# Copyright 2021 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, osrf-pycommon, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-galactic-launch-testing";
|
|
version = "0.17.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/galactic/launch_testing/0.17.0-2.tar.gz";
|
|
name = "0.17.0-2.tar.gz";
|
|
sha256 = "47b3cc614ee67010d7530df0624c1464c8a784400228e5a702746d43a74c752c";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python launch osrf-pycommon ];
|
|
|
|
meta = {
|
|
description = ''A package to create tests which involve launch files and multiple processes.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|