2020-03-13 12:45:42 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-03-13 12:45:42 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-urdfdom-py";
|
|
|
|
version = "1.0.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/urdfdom_py-release/archive/release/dashing/urdfdom_py/1.0.0-1.tar.gz";
|
|
|
|
name = "1.0.0-1.tar.gz";
|
|
|
|
sha256 = "2f4ce85f6a4fa0b42b44e8bc5920f1e4d6e53b5e4be32a8818d23991f8e0e6aa";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ python3Packages.mock ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.lxml python3Packages.pyyaml rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python implementation of the URDF parser.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|