nix-ros-overlay/distros/humble/rtabmap-python/default.nix

23 lines
768 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, python3Packages }:
buildRosPackage {
pname = "ros-humble-rtabmap-python";
version = "0.21.10-r1";
src = fetchurl {
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/humble/rtabmap_python/0.21.10-1.tar.gz";
name = "0.21.10-1.tar.gz";
sha256 = "9c2eb0a1cf37b05274ccefd8c580b1f468bd15e3de177ba3be80745081db2515";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
meta = {
description = "RTAB-Map's python package.";
license = with lib.licenses; [ bsdOriginal ];
};
}