2024-07-26 13:34:25 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-07-26 13:34:25 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-cmake-python, ament-copyright, ament-flake8, ament-pep257, flexbe-core, flexbe-msgs, launch-ros, launch-testing, python3Packages, rclpy, std-msgs }:
|
2024-07-26 13:34:25 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-flexbe-testing";
|
|
|
|
version = "3.0.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/flexbe_behavior_engine-release/archive/release/jazzy/flexbe_testing/3.0.3-1.tar.gz";
|
|
|
|
name = "3.0.3-1.tar.gz";
|
|
|
|
sha256 = "4b5cc8170f10c6534e7f09dc8a6451ff1e5c127b85a83652bed1f8c55baa86f5";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-cmake-pytest ament-copyright ament-flake8 ament-pep257 launch-testing python3Packages.pytest std-msgs ];
|
2024-07-26 13:34:25 +00:00
|
|
|
propagatedBuildInputs = [ flexbe-core flexbe-msgs launch-ros rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "flexbe_testing provides a framework for unit testing states.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|