mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
788 B
Nix
23 lines
788 B
Nix
|
|
# Copyright 2021 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-galactic-ament-index-python";
|
|
version = "1.0.6-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/galactic/ament_index_python/1.0.6-1.tar.gz";
|
|
name = "1.0.6-1.tar.gz";
|
|
sha256 = "09ca2a61311e12d97a84049c158b61db8b47030dd99a16b02e6dc2de4df031fd";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|