2020-09-13 20:23:13 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-09-13 20:23:13 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python3Packages, rostest, urdfdom-py }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-kdl-parser-py";
|
2022-04-15 13:36:09 +00:00
|
|
|
version = "1.14.2-r1";
|
2020-09-13 20:23:13 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-04-15 13:36:09 +00:00
|
|
|
url = "https://github.com/ros-gbp/kdl_parser-release/archive/release/noetic/kdl_parser_py/1.14.2-1.tar.gz";
|
|
|
|
name = "1.14.2-1.tar.gz";
|
|
|
|
sha256 = "21e02913bc61d60fb30d14533c9073c4ce350f6c8d642e40301bca23c6df351c";
|
2020-09-13 20:23:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin python3Packages.catkin-pkg python3Packages.setuptools ];
|
2020-09-13 20:23:13 -04:00
|
|
|
checkInputs = [ rostest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.pykdl urdfdom-py ];
|
|
|
|
nativeBuildInputs = [ catkin python3Packages.catkin-pkg python3Packages.setuptools ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The Kinematics and Dynamics Library (KDL) defines a tree structure
|
2020-09-13 20:23:13 -04:00
|
|
|
to represent the kinematic and dynamic parameters of a robot
|
|
|
|
mechanism. <tt>kdl_parser_py</tt> provides Python tools to construct a KDL
|
2024-03-23 14:09:26 +00:00
|
|
|
tree from an XML robot representation in URDF.";
|
2020-09-13 20:23:13 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|