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