2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python-qt-binding, python3Packages }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-qt-dotgraph";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.9.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/rolling/qt_dotgraph/2.9.0-1.tar.gz";
|
|
|
|
name = "2.9.0-1.tar.gz";
|
|
|
|
sha256 = "328e7fcc7be6dbc8f8d42c446249ee56de426fa6444b8b6d5513510c699cb01c";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
2024-12-27 13:14:54 +00:00
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint python3Packages.pytest ];
|
2024-12-27 13:14:54 +00:00
|
|
|
propagatedBuildInputs = [ python-qt-binding python3Packages.pydot python3Packages.pygraphviz ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "qt_dotgraph provides helpers to work with dot graphs.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|