nix-ros-overlay/distros/rolling/ament-index-python/default.nix
2022-12-09 19:43:19 -05:00

23 lines
786 B
Nix

# Copyright 2022 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 ];
};
}