2020-05-23 15:15:06 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, catkin, genmsg, genpy, python-qt-binding, qt-gui, rosbag, roslib, rospy, rostopic, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-rqt-py-common";
|
2020-06-13 00:41:17 -04:00
|
|
|
version = "0.5.2-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-13 00:41:17 -04:00
|
|
|
url = "https://github.com/ros-gbp/rqt-release/archive/release/noetic/rqt_py_common/0.5.2-1.tar.gz";
|
|
|
|
name = "0.5.2-1.tar.gz";
|
|
|
|
sha256 = "043ee2a271fe913b2dac1c47db5c032ce7690ee8786553df7fd9767da63b688a";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
buildInputs = [ genmsg std-msgs ];
|
|
|
|
propagatedBuildInputs = [ actionlib genpy python-qt-binding qt-gui rosbag roslib rospy rostopic ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_py_common provides common functionality for rqt plugins written in Python.
|
|
|
|
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
|
|
|
|
should not introduce any special dependencies beside "ros_base".'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|