2022-11-04 13:38:03 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-11-04 13:38:03 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, python3, python3Packages }:
|
2022-11-04 13:38:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-generate-parameter-library-py";
|
2025-01-24 13:19:18 +00:00
|
|
|
version = "0.4.0-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-24 13:19:18 +00:00
|
|
|
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";
|
2022-11-04 13:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright python3Packages.pytest ];
|
2022-12-02 13:31:38 +00:00
|
|
|
propagatedBuildInputs = [ python3 python3Packages.jinja2 python3Packages.pyyaml python3Packages.typeguard ];
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Python to generate ROS parameter library.";
|
2022-11-04 13:38:03 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|