2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-04-30 12:50:24 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, python-qt-binding, qt-gui, qt-gui-py-common, rclpy, rqt-gui, rqt-gui-py }:
|
2020-06-12 18:02:43 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-rqt-py-console";
|
2021-04-30 12:50:24 +00:00
|
|
|
version = "1.0.1-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-30 12:50:24 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rqt_py_console-release/archive/release/foxy/rqt_py_console/1.0.1-1.tar.gz";
|
|
|
|
name = "1.0.1-1.tar.gz";
|
|
|
|
sha256 = "1f8ca426804703dce0530abddfa66a3ec9fff96a7038a953793c8ba6f6df81ef";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
2021-04-30 12:50:24 +00:00
|
|
|
buildType = "ament_python";
|
2020-06-12 18:02:43 -04:00
|
|
|
propagatedBuildInputs = [ ament-index-python python-qt-binding qt-gui qt-gui-py-common rclpy rqt-gui rqt-gui-py ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_py_console is a Python GUI plugin providing an interactive Python console.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|