1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/py-binding-tools/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-cmake-python, ament-lint-auto, ament-lint-common, geometry-msgs, pybind11-vendor, rclcpp, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-humble-py-binding-tools";
version = "2.0.1-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/py_binding_tools-release/archive/release/humble/py_binding_tools/2.0.1-1.tar.gz";
name = "2.0.1-1.tar.gz";
sha256 = "aca34f0832b7b09df4088274daadcaffaa50255cbdf16ed20d22782965359276";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common rclpy std-msgs ];
propagatedBuildInputs = [ geometry-msgs pybind11-vendor rclcpp ];
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
meta = {
description = "Python binding tools for C++";
license = with lib.licenses; [ bsdOriginal ];
};
}