1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/launch-testing/default.nix

24 lines
902 B
Nix
Raw Normal View History

# 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 }:
buildRosPackage {
pname = "ros-dashing-launch-testing";
version = "0.8.5-r3";
src = fetchurl {
url = https://github.com/ros2-gbp/launch-release/archive/release/dashing/launch_testing/0.8.5-3.tar.gz;
sha256 = "d2b4bc4d468b8968da176afeecfaaa512f6c34eccecbd45940e2fffdd22b1c74";
};
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 ];
};
}