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/dashing/urdfdom-py/default.nix

25 lines
771 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# 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 ];
};
}