2023-12-22 13:30:27 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-12-22 13:30:27 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages, qt5 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-py-trees-js";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.6.4-r3";
|
2023-12-22 13:30:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/py_trees_js-release/archive/release/rolling/py_trees_js/0.6.4-3.tar.gz";
|
|
|
|
name = "0.6.4-3.tar.gz";
|
|
|
|
sha256 = "7e341e7e703d352aca8ee6f4dd470001970bf9b63bb9f57e1f714108d18ea969";
|
2023-12-22 13:30:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
buildInputs = [ python3Packages.setuptools qt5.qttools.dev ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.pyqt5 python3Packages.pyqtwebengine ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Javascript library for visualising behaviour trees.";
|
2023-12-22 13:30:27 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|