mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
24 lines
881 B
Nix
24 lines
881 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-humble-generate-parameter-library-py";
|
|
version = "0.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/humble/generate_parameter_library_py/0.4.0-1.tar.gz";
|
|
name = "0.4.0-1.tar.gz";
|
|
sha256 = "7c32da7dc5c40c2187e3ea32a4f2e33740702c5b51fa6a214a30ac103fec579f";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|