2019-09-04 17:11:04 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, python-cmake-module, python-qt-binding, qt-gui, qt5, rclpy, rosidl-default-generators, rosidl-default-runtime }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-rqt-py-common";
|
2021-02-12 13:24:24 +00:00
|
|
|
version = "1.0.7-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-12 13:24:24 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt-release/archive/release/dashing/rqt_py_common/1.0.7-1.tar.gz";
|
|
|
|
name = "1.0.7-1.tar.gz";
|
|
|
|
sha256 = "ffde541a2947f0114546d428fe8c05ca211a71594434f00c99d7b511a176d502";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2021-02-12 13:24:24 +00:00
|
|
|
checkInputs = [ ament-cmake-pytest python-cmake-module rosidl-default-generators rosidl-default-runtime ];
|
|
|
|
propagatedBuildInputs = [ python-qt-binding qt-gui qt5.qtbase rclpy ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|