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/foxy/urdfdom-py/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

24 lines
765 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3Packages, rclpy }:
buildRosPackage {
pname = "ros-foxy-urdfdom-py";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/urdfdom_py-release/archive/release/foxy/urdfdom_py/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "1ae1816fbc29bd091b7372ca429cbf0282ea10f23b2c862b135781af9ac96925";
};
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 ];
};
}