# Copyright 2020 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch, pythonPackages }: buildRosPackage { pname = "ros-eloquent-launch-xml"; version = "0.9.6-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/launch-release/archive/release/eloquent/launch_xml/0.9.6-1.tar.gz"; name = "0.9.6-1.tar.gz"; sha256 = "c4dda11423cc023fb4eab4739250f096c3fbb49d84b49e1d6d6980122759cce0"; }; buildType = "ament_python"; checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ]; propagatedBuildInputs = [ launch ]; meta = { description = ''XML frontend for the launch package.''; license = with lib.licenses; [ asl20 ]; }; }