2023-12-22 13:30:27 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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-iron-py-trees-js";
|
|
|
|
version = "0.6.4-r3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/py_trees_js-release/archive/release/iron/py_trees_js/0.6.4-3.tar.gz";
|
|
|
|
name = "0.6.4-3.tar.gz";
|
|
|
|
sha256 = "6bdb4ab4a1f7f0b084bdd04516e76179a473c3fc59815b3acf5164fcec74381a";
|
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|