2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04: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-iron-nao-button-sim";
|
|
|
|
version = "0.1.1-r5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/nao_button_sim-release/archive/release/iron/nao_button_sim/0.1.1-5.tar.gz";
|
|
|
|
name = "0.1.1-5.tar.gz";
|
|
|
|
sha256 = "85f25a2cc8926839802fc405701c091d8f8d48e36c19a63498f916563a2003f7";
|
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|