2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:14:51 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, pythonPackages, ros2cli, tracetools-analysis }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-ros2trace-analysis";
|
|
|
|
version = "0.2.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://gitlab.com/micro-ROS/ros_tracing/tracetools_analysis-release/repository/archive.tar.gz?ref=release/eloquent/ros2trace_analysis/0.2.2-1";
|
|
|
|
name = "archive.tar.gz";
|
|
|
|
sha256 = "f3c42eb2fd3f0057255f5a4af0356e0b78e7358c53edef8e90ed45e75f8e904e";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-12-09 23:14:51 -05:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ ros2cli tracetools-analysis ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The trace analysis command for ROS 2 command line tools.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|