mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
regenerate all distros, Mon Jun 19 17:15:22 2023
This commit is contained in:
parent
7a2b545ecb
commit
381164fc34
2124 changed files with 35727 additions and 4192 deletions
36
distros/iron/python-qt-binding/default.nix
Normal file
36
distros/iron/python-qt-binding/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
# Copyright 2023 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, python3Packages, qt5 }:
|
||||
buildRosPackage {
|
||||
pname = "ros-iron-python-qt-binding";
|
||||
version = "1.2.3-r2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ros2-gbp/python_qt_binding-release/archive/release/iron/python_qt_binding/1.2.3-2.tar.gz";
|
||||
name = "1.2.3-2.tar.gz";
|
||||
sha256 = "1ac1ea94776932a0e296c01d83d930871f4f97bc48b0874415ba2876686609d3";
|
||||
};
|
||||
|
||||
buildType = "ament_cmake";
|
||||
buildInputs = [ ament-cmake qt5.qtbase ];
|
||||
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
||||
propagatedBuildInputs = [ python3Packages.pyqt5 ];
|
||||
nativeBuildInputs = [ ament-cmake ];
|
||||
|
||||
meta = {
|
||||
description = ''This stack provides Python bindings for Qt.
|
||||
There are two providers: pyside and pyqt. PySide2 is available under
|
||||
the GPL, LGPL and a commercial license. PyQt is released under the GPL.
|
||||
|
||||
Both the bindings and tools to build bindings are included from each
|
||||
available provider. For PySide, it is called "Shiboken". For PyQt,
|
||||
this is called "SIP".
|
||||
|
||||
Also provided is adapter code to make the user's Python code
|
||||
independent of which binding provider was actually used which makes
|
||||
it very easy to switch between these.'';
|
||||
license = with lib.licenses; [ bsdOriginal ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue