2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-11-07 17:17:35 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-xmllint, ament-flake8, pythonPackages, ament-pep257, ament-copyright, tracetools-read }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tracetools-analysis";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.2.1-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://gitlab.com/micro-ROS/ros_tracing/tracetools_analysis-release/repository/archive.tar.gz?ref=release/dashing/tracetools_analysis/0.2.1-1";
|
2019-09-06 12:16:03 -04:00
|
|
|
name = "archive.tar.gz";
|
2019-11-07 17:17:35 -05:00
|
|
|
sha256 = "9136f5999555452ed1960996a6d725c3859665d907cc03568b882f97aa02c53c";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-11-07 17:17:35 -05:00
|
|
|
buildInputs = [ tracetools-read ];
|
|
|
|
checkInputs = [ ament-xmllint ament-flake8 pythonPackages.pytest ament-pep257 ament-copyright ];
|
2019-09-04 17:11:04 -04:00
|
|
|
propagatedBuildInputs = [ tracetools-read ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Tools for analysing trace data.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|