nix-ros-overlay/distros/jazzy/py-trees/default.nix

24 lines
732 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3Packages }:
buildRosPackage {
pname = "ros-jazzy-py-trees";
version = "2.3.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/py_trees-release/archive/release/jazzy/py_trees/2.3.0-1.tar.gz";
name = "2.3.0-1.tar.gz";
sha256 = "0773f907a5691d8a854849dfe5a2ca0776802268017b2faaae9dd75c56b56ca3";
};
buildType = "ament_python";
buildInputs = [ python3Packages.setuptools ];
propagatedBuildInputs = [ python3Packages.pydot ];
meta = {
description = "Pythonic implementation of behaviour trees.";
license = with lib.licenses; [ bsdOriginal ];
};
}