2019-04-26 08:49:29 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-26 08:49:29 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, rosbag, roslib, rospy-message-converter }:
|
2019-04-26 08:49:29 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rosbag-pandas";
|
|
|
|
version = "0.5.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/eurogroep/rosbag_pandas-release/archive/release/melodic/rosbag_pandas/0.5.3-0.tar.gz";
|
|
|
|
name = "0.5.3-0.tar.gz";
|
2019-04-26 08:49:29 -04:00
|
|
|
sha256 = "a1e49a019fe7770b6a4de2ba9c8551c78e6288b2a32f7da4227f97d48e929a9f";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ pythonPackages.matplotlib pythonPackages.numpy pythonPackages.pandas rosbag roslib rospy-message-converter ];
|
2019-04-26 08:49:29 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Create a Pandas data frame from a ros bag file.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
2019-04-26 08:49:29 -04:00
|
|
|
};
|
|
|
|
}
|