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

24 lines
761 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
buildRosPackage {
pname = "ros-jazzy-rtabmap-python";
version = "0.21.9-r1";
src = fetchurl {
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/jazzy/rtabmap_python/0.21.9-1.tar.gz";
name = "0.21.9-1.tar.gz";
sha256 = "a3c65903873d492985f09dfea53e3693d7b5f6e70065b2b9d9c4c03f48b80cfd";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
meta = {
description = "RTAB-Map's python package.";
license = with lib.licenses; [ bsdOriginal ];
};
}