2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, launch, pythonPackages, ament-copyright, ament-pep257, python3Packages, ament-index-python }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-launch-testing";
|
2019-09-09 14:55:58 -04:00
|
|
|
version = "0.8.6-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-09 14:55:58 -04:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/dashing/launch_testing/0.8.6-1.tar.gz";
|
|
|
|
name = "0.8.6-1.tar.gz";
|
|
|
|
sha256 = "61b72ad8cefeff402bc51b430d06b663d61651b9478ee0fb9805efee0d05e3c7";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ python3Packages.mock ament-flake8 pythonPackages.pytest launch ament-pep257 ament-copyright ];
|
|
|
|
propagatedBuildInputs = [ ament-index-python launch ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package to create tests which involve launch files and multiple processes.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|