# Copyright 2020 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, python3Packages, pythonPackages }: buildRosPackage { pname = "ros-dashing-ament-package"; version = "0.7.3-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/ament_package-release/archive/release/dashing/ament_package/0.7.3-1.tar.gz"; name = "0.7.3-1.tar.gz"; sha256 = "ea4921612a5985843b6ba1801a7d0bb3462f7644498b8b0b23e35de12b37dbe0"; }; buildType = "ament_python"; checkInputs = [ python3Packages.flake8 pythonPackages.pytest ]; propagatedBuildInputs = [ python3Packages.setuptools ]; meta = { description = ''The parser for the manifest files in the ament buildsystem.''; license = with lib.licenses; [ asl20 ]; }; }