2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-urdfdom-py";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "1.2.1-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/urdfdom_py-release/archive/release/rolling/urdfdom_py/1.2.1-2.tar.gz";
|
|
|
|
name = "1.2.1-2.tar.gz";
|
|
|
|
sha256 = "53818eb42312f6acd1ec0c04fe1eb90a54bb9c3cf8dd81d5591c53f55f6db84d";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
propagatedBuildInputs = [ python3Packages.lxml python3Packages.pyyaml rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Python implementation of the URDF parser.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|