2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-package";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "0.16.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros2-gbp/ament_package-release/archive/release/rolling/ament_package/0.16.2-1.tar.gz";
|
|
|
|
name = "0.16.2-1.tar.gz";
|
|
|
|
sha256 = "601f81d53504eb4de4a5d4f2a370abd11d0a5454007c59f5fc39d6bb787dbed0";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ python3Packages.flake8 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.importlib-metadata python3Packages.importlib-resources python3Packages.setuptools ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ python3Packages.setuptools ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The parser for the manifest files in the ament buildsystem.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|