mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-17 21:08:39 +03:00
25 lines
907 B
Nix
25 lines
907 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-rolling-generate-parameter-library-py";
|
||
|
version = "0.3.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/PickNikRobotics/generate_parameter_library-release/archive/release/rolling/generate_parameter_library_py/0.3.0-1.tar.gz";
|
||
|
name = "0.3.0-1.tar.gz";
|
||
|
sha256 = "56ffaab075a10bf55863dac1a0039c3155fe5ee02dac06ec1d9d125fff3094cd";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|