2023-05-02 16:50:22 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-05-02 16:50:22 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-rtabmap-python";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "0.21.3-r1";
|
2023-05-02 16:50:22 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/humble/rtabmap_python/0.21.3-1.tar.gz";
|
|
|
|
name = "0.21.3-1.tar.gz";
|
|
|
|
sha256 = "66e58bf52879b517c88d1fcb60df29a00188745fcc249cdb6b622ded168b66fa";
|
2023-05-02 16:50:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''RTAB-Map's python package.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|