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

24 lines
727 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3Packages, rclpy }:
buildRosPackage {
pname = "ros-rolling-urdfdom-py";
version = "1.2.1-r2";
src = fetchurl {
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";
};
buildType = "ament_python";
propagatedBuildInputs = [ python3Packages.lxml python3Packages.pyyaml rclpy ];
meta = {
description = "Python implementation of the URDF parser.";
license = with lib.licenses; [ bsdOriginal ];
};
}