2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-06-24 01:11:26 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, python3Packages }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-qt-gui-py-common";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "0.4.5-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/noetic/qt_gui_py_common/0.4.5-1.tar.gz";
|
|
|
|
name = "0.4.5-1.tar.gz";
|
|
|
|
sha256 = "083b4cfdb3c68cc87f8cfd25d78432343c6f3bd02cc80e88e39694a34ef9cdac";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin python3Packages.setuptools ];
|
2020-06-24 01:11:26 -04:00
|
|
|
propagatedBuildInputs = [ python-qt-binding python3Packages.rospkg ];
|
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "qt_gui_py_common provides common functionality for GUI plugins written in Python.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|