1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/melodic/urdfdom-py/default.nix

27 lines
829 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python, catkin, pythonPackages }:
buildRosPackage {
pname = "ros-melodic-urdfdom-py";
version = "0.4.0";
src = fetchurl {
url = "https://github.com/ros-gbp/urdfdom_py-release/archive/release/melodic/urdfdom_py/0.4.0-0.tar.gz";
name = "0.4.0-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "9d0663d9bde7a548ba4df458423922d7d1e326a786e50cc33846f0835c4843f6";
};
buildType = "catkin";
buildInputs = [ python ];
2019-03-21 00:14:59 -04:00
checkInputs = [ pythonPackages.mock ];
propagatedBuildInputs = [ python pythonPackages.lxml pythonPackages.pyyaml ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Python implementation of the URDF parser.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}