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
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, pybind11-json-vendor, pybind11-vendor, rclpy, rmf-fleet-adapter }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmf-fleet-adapter-python";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "2.6.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmf_ros2-release/archive/release/rolling/rmf_fleet_adapter_python/2.6.0-1.tar.gz";
|
|
|
|
name = "2.6.0-1.tar.gz";
|
|
|
|
sha256 = "3cb6552aa6bb993b7f9b03f62e06aac3fb7f035ae0e06cc905c1f502673f8d89";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-pytest ];
|
|
|
|
propagatedBuildInputs = [ pybind11-json-vendor pybind11-vendor rclpy rmf-fleet-adapter ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python bindings for the rmf_fleet_adapter'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|