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, boost, git, catkin, pythonPackages, eigen }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-eigenpy";
|
2019-05-05 02:02:52 -04:00
|
|
|
version = "1.5.1-r2";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-05 02:02:52 -04:00
|
|
|
url = https://github.com/ipab-slmc/eigenpy_catkin-release/archive/release/melodic/eigenpy/1.5.1-2.tar.gz;
|
|
|
|
sha256 = "c8cf3b85343d3d89898496db8b1f5fcdfc1d3c5c43611cafb1871d7594c21a68";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-05-05 02:02:52 -04:00
|
|
|
buildInputs = [ python pythonPackages.numpy boost git eigen ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ python pythonPackages.numpy boost eigen ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Bindings between Numpy and Eigen using Boost.Python - wrapped for catkin.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|