2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-02-14 13:45:14 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, python-qt-binding, python3Packages, qt-gui-py-common, rclpy, rosidl-runtime-py, rqt-gui, rqt-gui-py, rqt-py-common, std-msgs }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rqt-plot";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "1.4.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt_plot-release/archive/release/jazzy/rqt_plot/1.4.2-1.tar.gz";
|
|
|
|
name = "1.4.2-1.tar.gz";
|
|
|
|
sha256 = "5986df27724d82b1e79074a79b9aed0ec034dce1a985dd27d91b176b5206cec9";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright python3Packages.pytest ];
|
2025-02-14 13:45:14 +00:00
|
|
|
propagatedBuildInputs = [ python-qt-binding python3Packages.catkin-pkg python3Packages.matplotlib python3Packages.numpy qt-gui-py-common rclpy rosidl-runtime-py rqt-gui rqt-gui-py rqt-py-common std-msgs ];
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "rqt_plot provides a GUI plugin visualizing numeric values in a 2D plot using different plotting backends.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|