2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 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, ament-cmake-python, ament-lint-auto, ament-lint-common, orocos-kdl-vendor, pybind11-vendor, python-cmake-module, python3Packages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-python-orocos-kdl-vendor";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "0.4.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/orocos_kdl_vendor-release/archive/release/rolling/python_orocos_kdl_vendor/0.4.1-1.tar.gz";
|
|
|
|
name = "0.4.1-1.tar.gz";
|
|
|
|
sha256 = "f56acea479df173b069701e870be38539b00ec223b92253372ad617dc5ca7230";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-python python-cmake-module ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ orocos-kdl-vendor pybind11-vendor python3Packages.pykdl ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python python-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Wrapper around PyKDL, providing nothing but a dependency on PyKDL on some systems.
|
|
|
|
On others, it fetches and builds python_orocos_kdl locally.'';
|
|
|
|
license = with lib.licenses; [ asl20 "LGPL-2.1-or-later" ];
|
|
|
|
};
|
|
|
|
}
|