2024-11-08 14:09:31 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-copyright, ament-flake8, ament-pep257, lifecycle-msgs, plansys2-msgs, python-cmake-module, pythonPackages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-plansys2-support-py";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.0.15-r1";
|
2024-11-08 14:09:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_planning_system-release/archive/release/jazzy/plansys2_support_py/2.0.15-1.tar.gz";
|
|
|
|
name = "2.0.15-1.tar.gz";
|
|
|
|
sha256 = "0ad7a556ff389218f0cd26501dd068c05cd42423b5caa8e6e3f3fd0e0248a628";
|
2024-11-08 14:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake python-cmake-module ];
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ lifecycle-msgs plansys2-msgs rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake python-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "This package contains modules for developing PlanSys components in Python";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|