mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-12 05:16:30 +03:00
24 lines
933 B
Nix
24 lines
933 B
Nix
|
|
# Copyright 2019 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, python3Packages, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-launch-testing";
|
|
version = "0.8.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/dashing/launch_testing/0.8.7-1.tar.gz";
|
|
name = "0.8.7-1.tar.gz";
|
|
sha256 = "00fa4f3b31f42e796172decf55488d3fadc4bc9e538e6a5d53224c5b43835959";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 launch python3Packages.mock pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python launch ];
|
|
|
|
meta = {
|
|
description = ''A package to create tests which involve launch files and multiple processes.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|