2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-auto, ament-lint-common, lifecycle, lifecycle-msgs, rclpy, ros-testing, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-lifecycle-py";
|
|
|
|
version = "0.27.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/lifecycle_py/0.27.1-1.tar.gz";
|
|
|
|
name = "0.27.1-1.tar.gz";
|
|
|
|
sha256 = "fda72b5c9a5f4b5dfad66d653bdf4c83d565ab5a35d232ea7cecd77de745b8c2";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common lifecycle ros-testing ];
|
|
|
|
propagatedBuildInputs = [ lifecycle-msgs rclpy std-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Package containing demos for rclpy lifecycle implementation'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|