nix-ros-overlay/distros/humble/rmf-fleet-adapter-python/default.nix

25 lines
856 B
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# 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-humble-rmf-fleet-adapter-python";
version = "2.1.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_ros2-release/archive/release/humble/rmf_fleet_adapter_python/2.1.8-1.tar.gz";
name = "2.1.8-1.tar.gz";
sha256 = "228221680c4617c5917566fee0c0602f1160476ce949a83371559ccec6b8f4cb";
};
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 ];
};
}