2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-22 13:28:00 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-cmake-python, ament-lint-auto, ament-lint-common, python-qt-binding, qt-gui, qt5, rclpy, rosidl-default-generators, rosidl-default-runtime }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rqt-py-common";
|
2024-11-22 13:28:00 +00:00
|
|
|
version = "1.8.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-22 13:28:00 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt-release/archive/release/rolling/rqt_py_common/1.8.0-1.tar.gz";
|
|
|
|
name = "1.8.0-1.tar.gz";
|
|
|
|
sha256 = "86a3b855d5fcc94c77fa07ff5de6cc2a1f3b523bd390d9428a4decb2542419fc";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-11-22 13:28:00 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common rosidl-default-generators rosidl-default-runtime ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ python-qt-binding qt-gui qt5.qtbase rclpy ];
|
2024-11-22 13:28:00 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "rqt_py_common provides common functionality for rqt plugins written in Python.
|
2022-12-09 19:20:15 -05:00
|
|
|
Despite no plugin is provided, this package is part of the rqt_common_plugins
|
|
|
|
repository to keep refactoring generic functionality from these common plugins
|
|
|
|
into this package as easy as possible.
|
|
|
|
|
|
|
|
Functionality included in this package should cover generic ROS concepts and
|
2024-03-23 14:09:26 +00:00
|
|
|
should not introduce any special dependencies beside "ros_base".";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|