mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
24 lines
883 B
Nix
24 lines
883 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, python3, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-generate-parameter-library-py";
|
|
version = "0.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/rolling/generate_parameter_library_py/0.4.0-1.tar.gz";
|
|
name = "0.4.0-1.tar.gz";
|
|
sha256 = "3c2b57a052a21a574c565a221ea812d466835bbd6e31db308df29eceeb68a2d3";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright python3Packages.pytest ];
|
|
propagatedBuildInputs = [ python3 python3Packages.jinja2 python3Packages.pyyaml python3Packages.typeguard ];
|
|
|
|
meta = {
|
|
description = "Python to generate ROS parameter library.";
|
|
license = with lib.licenses; [ bsd3 ];
|
|
};
|
|
}
|