2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, nao-sensor-msgs, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-nao-button-sim";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.1.1-r4";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/nao_button_sim-release/archive/release/rolling/nao_button_sim/0.1.1-4.tar.gz";
|
|
|
|
name = "0.1.1-4.tar.gz";
|
|
|
|
sha256 = "3b815d3335333cda164deacf7208b4ea367e98e125844d4a832dbcbe4c8b3bc0";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ nao-sensor-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Allows simulating button presses through command line interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|