2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python3Packages, pythonPackages, rosidl-parser, std-msgs, std-srvs, test-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rosidl-runtime-py";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.13.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl_runtime_py-release/archive/release/rolling/rosidl_runtime_py/0.13.0-2.tar.gz";
|
|
|
|
name = "0.13.0-2.tar.gz";
|
|
|
|
sha256 = "f91f210dda3944a5777fd71bb2e66617207e4b17a69ad0bfddc66697049c2d65";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest std-msgs std-srvs test-msgs ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.numpy python3Packages.pyyaml rosidl-parser ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Runtime utilities for working with generated ROS interfaces in Python.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|