2022-02-04 13:22:04 +00:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-index-python, python3Packages, pythonPackages, rclpy, xacro }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-launch-param-builder";
|
2022-06-09 18:50:37 -04:00
|
|
|
version = "0.1.1-r1";
|
2022-02-04 13:22:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-06-09 18:50:37 -04:00
|
|
|
url = "https://github.com/PickNikRobotics/launch_param_builder-release/archive/release/foxy/launch_param_builder/0.1.1-1.tar.gz";
|
|
|
|
name = "0.1.1-1.tar.gz";
|
|
|
|
sha256 = "8c427e92d6cd8ff40edfa0d78462b0f8f84ac1068309fc1c82d59a4fe3cb4075";
|
2022-02-04 13:22:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ ament-index-python python3Packages.pyyaml rclpy xacro ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python library for loading parameters in launch files'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|