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/rolling/py-binding-tools/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 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-rolling-py-binding-tools";
version = "2.0.1-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/py_binding_tools-release/archive/release/rolling/py_binding_tools/2.0.1-1.tar.gz";
name = "2.0.1-1.tar.gz";
sha256 = "1fbf5db08ab767bc31ed9d90d3b13dedc5e5de3505fe321265a710c1a739d326";
};
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 ];
};
}