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
|
|
|
|
|
2024-11-22 13:28:00 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages, sensor-msgs, std-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-sensor-msgs-py";
|
2024-11-22 13:28:00 +00:00
|
|
|
version = "5.4.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-22 13:28:00 +00:00
|
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/rolling/sensor_msgs_py/5.4.2-1.tar.gz";
|
|
|
|
name = "5.4.2-1.tar.gz";
|
|
|
|
sha256 = "f1d6c815733200c25dfc98b4cd66a4f41105c4f9f9cbf5a7adab47312c0fd525";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2024-11-22 13:28:00 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
2023-05-02 16:50:22 -04:00
|
|
|
propagatedBuildInputs = [ python3Packages.numpy sensor-msgs std-msgs ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A package for easy creation and reading of PointCloud2 messages in Python.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|