2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00: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-jazzy-lifecycle-py";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "0.33.5-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/lifecycle_py/0.33.5-1.tar.gz";
|
|
|
|
name = "0.33.5-1.tar.gz";
|
|
|
|
sha256 = "97d4a6652ad2eb56173b12da1382051bdbedd505592baccfcb034058db4eab73";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|