1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/ament-package/default.nix

25 lines
930 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3Packages, pythonPackages }:
buildRosPackage {
pname = "ros-rolling-ament-package";
version = "0.16.2-r1";
src = fetchurl {
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";
};
buildType = "ament_python";
checkInputs = [ python3Packages.flake8 pythonPackages.pytest ];
propagatedBuildInputs = [ python3Packages.importlib-metadata python3Packages.importlib-resources python3Packages.setuptools ];
nativeBuildInputs = [ python3Packages.setuptools ];
meta = {
description = ''The parser for the manifest files in the ament buildsystem.'';
license = with lib.licenses; [ asl20 ];
};
}