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-copyright, ament-flake8, ament-pep257, python3Packages, pythonPackages, sensor-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-sensor-msgs-py";
|
2024-05-24 14:00:52 +00:00
|
|
|
version = "4.2.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/common_interfaces-release/archive/release/humble/sensor_msgs_py/4.2.4-1.tar.gz";
|
|
|
|
name = "4.2.4-1.tar.gz";
|
|
|
|
sha256 = "c036af1acd8792b116eb2f47832d928986e4ec13f060db953098fa0834f6de6c";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.numpy sensor-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A package for easy creation and reading of PointCloud2 messages in Python.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|