mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 11:14:49 +03:00
25 lines
882 B
Nix
25 lines
882 B
Nix
![]() |
|
||
|
# Copyright 2022 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.2.8-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/PickNikRobotics/generate_parameter_library-release/archive/release/humble/generate_parameter_library_py/0.2.8-1.tar.gz";
|
||
|
name = "0.2.8-1.tar.gz";
|
||
|
sha256 = "cfdbd92ceb93ea609816eab085e557c903702a7743cdef21c23e0c6579470ad2";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ python3 python3Packages.jinja2 python3Packages.typeguard ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Python to generate ROS parameter library.'';
|
||
|
license = with lib.licenses; [ bsd3 ];
|
||
|
};
|
||
|
}
|