nix-ros-overlay/distros/humble/scenario-execution/default.nix

24 lines
875 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, py-trees, python3Packages }:
buildRosPackage {
pname = "ros-humble-scenario-execution";
version = "1.2.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/scenario_execution-release/archive/release/humble/scenario_execution/1.2.0-2.tar.gz";
name = "1.2.0-2.tar.gz";
sha256 = "fe465ead716e39fcd6be558ddb5adc56cf9bdda8c663bc26dcd93c68a80c4085";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ py-trees python3Packages.antlr4-python3-runtime python3Packages.pyyaml ];
meta = {
description = "Scenario Execution";
license = with lib.licenses; [ asl20 ];
};
}