2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, rclpy, pythonPackages, example-interfaces, ament-pep257, std-msgs, ament-copyright }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-demo-nodes-py";
|
|
|
|
version = "0.7.8-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/demo_nodes_py/0.7.8-1.tar.gz";
|
|
|
|
name = "0.7.8-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "ba4c8ff0dd545ac50eb233208dac9a836a6055a8d796f096835b74ac1d6d0575";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-flake8 ament-copyright pythonPackages.pytest ament-pep257 ];
|
|
|
|
propagatedBuildInputs = [ rclpy std-msgs example-interfaces ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python nodes which were previously in the ros2/examples repository but are now just used for demo purposes.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|