# Copyright 2022 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, rclpy, std-msgs }: buildRosPackage { pname = "ros-humble-quality-of-service-demo-py"; version = "0.20.2-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/demos-release/archive/release/humble/quality_of_service_demo_py/0.20.2-1.tar.gz"; name = "0.20.2-1.tar.gz"; sha256 = "93a19b38f5aa4bc65c85609608de7a2ef36c982b77791235e8073de877d695df"; }; buildType = "ament_python"; checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ]; propagatedBuildInputs = [ rclpy std-msgs ]; meta = { description = ''Python Demo applications for Quality of Service features''; license = with lib.licenses; [ asl20 ]; }; }