nix-ros-overlay/distros/jazzy/examples-rclpy-minimal-client/default.nix

24 lines
908 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, example-interfaces, python3Packages, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-examples-rclpy-minimal-client";
version = "0.19.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/examples_rclpy_minimal_client/0.19.5-1.tar.gz";
name = "0.19.5-1.tar.gz";
sha256 = "f8fe4c6e9d63ebfae737a9a53197a70027b3a517651bcc6f8bcf931d0b2b04ff";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ example-interfaces rclpy std-msgs ];
meta = {
description = "Examples of minimal service clients using rclpy.";
license = with lib.licenses; [ asl20 ];
};
}