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