2019-09-04 17:11:04 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages, rclpy }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ros2cli";
|
2020-03-27 12:53:57 +00:00
|
|
|
version = "0.7.10-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 12:53:57 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2cli-release/archive/release/dashing/ros2cli/0.7.10-1.tar.gz";
|
|
|
|
name = "0.7.10-1.tar.gz";
|
|
|
|
sha256 = "2c93d9207eb1463bc80d3f8e3990077370f667c1589f99442be0fa5eb190d731";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ python3Packages.setuptools rclpy ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Framework for ROS 2 command line tools.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|