2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -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-humble-lifecycle-py";
|
2024-05-24 14:00:52 +00:00
|
|
|
version = "0.20.4-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-24 14:00:52 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/humble/lifecycle_py/0.20.4-1.tar.gz";
|
|
|
|
name = "0.20.4-1.tar.gz";
|
|
|
|
sha256 = "ab478f0e19b58cbd60e9c7946c7bced9ce0fec060b04a74eebbf38dd261c3b4b";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common lifecycle ros-testing ];
|
|
|
|
propagatedBuildInputs = [ lifecycle-msgs rclpy std-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Package containing demos for rclpy lifecycle implementation";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|