2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-tutorials-interfaces, ament-lint-auto, ament-lint-common, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-action-tutorials-py";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "0.32.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/rolling/action_tutorials_py/0.32.1-1.tar.gz";
|
|
|
|
name = "0.32.1-1.tar.gz";
|
|
|
|
sha256 = "41ebdf275f2aab034797f41bf853f3bf595e5516842e2a08267b505f9e3c094e";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ action-tutorials-interfaces rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python action tutorial code'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|