2023-05-02 16:50:22 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-05-02 16:50:22 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-index-python, geometry-msgs, moveit-core, moveit-ros-planning, moveit-ros-planning-interface, octomap-msgs, pybind11-vendor, pythonPackages, rclcpp, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-moveit-py";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.12.0-r1";
|
2023-05-02 16:50:22 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_py/2.12.0-1.tar.gz";
|
|
|
|
name = "2.12.0-1.tar.gz";
|
|
|
|
sha256 = "f31641d073054ae6e0710c3ae9a58d86077012c0d7fe4e2a0e3b8f08c8c46abc";
|
2023-05-02 16:50:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake pybind11-vendor ];
|
|
|
|
checkInputs = [ ament-cmake-pytest pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ ament-index-python geometry-msgs moveit-core moveit-ros-planning moveit-ros-planning-interface octomap-msgs rclcpp rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Python binding for MoveIt 2";
|
2023-05-02 16:50:22 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|