2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# 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";
|
2020-06-05 12:54:26 +00:00
|
|
|
version = "0.4.1-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-05 12:54:26 +00:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/noetic/qt_gui_py_common/0.4.1-1.tar.gz";
|
|
|
|
name = "0.4.1-1.tar.gz";
|
|
|
|
sha256 = "974b4ad8ac44f6666f9f23880479f5912839bef52d158f7cbbbefb8022da3e4c";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
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 = {
|
|
|
|
description = ''qt_gui_py_common provides common functionality for GUI plugins written in Python.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|