2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, scenario-execution }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-scenario-execution-os";
|
2024-10-11 13:52:59 +00:00
|
|
|
version = "1.2.0-r4";
|
2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-11 13:52:59 +00:00
|
|
|
url = "https://github.com/ros2-gbp/scenario_execution-release/archive/release/jazzy/scenario_execution_os/1.2.0-4.tar.gz";
|
|
|
|
name = "1.2.0-4.tar.gz";
|
|
|
|
sha256 = "9f371fd2ba1283578e3eb5280cc12bccf903ae32bb23a969db4c74c98672eebf";
|
2024-10-04 13:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ scenario-execution ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Scenario Execution library for OS interactions";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|