nix-ros-overlay/distros/jazzy/rqt-plot/default.nix

25 lines
1.1 KiB
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-jazzy-rqt-plot";
version = "1.4.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_plot-release/archive/release/jazzy/rqt_plot/1.4.3-1.tar.gz";
name = "1.4.3-1.tar.gz";
sha256 = "67dd12be61bd18f8a55ca8e310646df3d791cf33d00c66ac7647f72d32c862ed";
};
buildType = "ament_python";
checkInputs = [ ament-copyright python3Packages.pytest ];
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 ];
meta = {
description = "rqt_plot provides a GUI plugin visualizing numeric values in a 2D plot using different plotting backends.";
license = with lib.licenses; [ bsdOriginal ];
};
}