mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 19:24:50 +03:00
24 lines
900 B
Nix
24 lines
900 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-rolling-generate-parameter-library-py";
|
|
version = "0.3.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/rolling/generate_parameter_library_py/0.3.7-1.tar.gz";
|
|
name = "0.3.7-1.tar.gz";
|
|
sha256 = "d3dc686464feb0e5ea7e5ed33ea07f193dbbb760883155c490541f1a55aa0242";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|