mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
23 lines
782 B
Nix
23 lines
782 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-ament-index-python";
|
|
version = "1.8.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/jazzy/ament_index_python/1.8.1-1.tar.gz";
|
|
name = "1.8.1-1.tar.gz";
|
|
sha256 = "c1c836d3a2db03458d69491fde37d9ecb25537096c5211377344ee06560a5031";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
|
|
meta = {
|
|
description = "Python API to access the ament resource index.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|