2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cmake, pythonPackages, orocos-kdl }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-python-orocos-kdl";
|
|
|
|
version = "1.4.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/orocos/orocos-kdl-release/archive/release/melodic/python_orocos_kdl/1.4.0-0.tar.gz;
|
|
|
|
sha256 = "e2f7f6fafccaf26d88863ac50b826301c14db71f61e4caff757a482e304a62a0";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ pythonPackages.sip orocos-kdl ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ catkin orocos-kdl pythonPackages.sip ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package contains the python bindings PyKDL for the Kinematics and Dynamics
|
|
|
|
Library (KDL), distributed by the Orocos Project.'';
|
|
|
|
#license = lib.licenses.LGPL;
|
|
|
|
};
|
|
|
|
}
|