# Copyright 2022 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, action-msgs, ament-copyright, ament-flake8, ament-pep257, geometry-msgs, lifecycle-msgs, nav2-msgs, pythonPackages, rclpy }: buildRosPackage { pname = "ros-humble-nav2-simple-commander"; version = "1.1.0-r2"; src = fetchurl { url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_simple_commander/1.1.0-2.tar.gz"; name = "1.1.0-2.tar.gz"; sha256 = "58089cf3754cf223bc6e0e6035e7f0c187c0677c7fbd9f9aa735345635d698b6"; }; buildType = "ament_python"; checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ]; propagatedBuildInputs = [ action-msgs geometry-msgs lifecycle-msgs nav2-msgs rclpy ]; meta = { description = ''An importable library for writing mobile robot applications in python3''; license = with lib.licenses; [ asl20 ]; }; }