2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-xmllint, ament-flake8, rosidl-parser, test-msgs, pythonPackages, ament-pep257, python3Packages, ament-copyright }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-rosidl-runtime-py";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.7.9-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl_python-release/archive/release/dashing/rosidl_runtime_py/0.7.9-1.tar.gz";
|
|
|
|
name = "0.7.9-1.tar.gz";
|
|
|
|
sha256 = "9dd76507b64dd05554500a9155b68930e62a6713e843f5167601c93fbf586c3c";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-xmllint pythonPackages.pytest ament-flake8 test-msgs ament-pep257 ament-copyright ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.numpy python3Packages.pyyaml rosidl-parser ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Runtime utilities for working with generated ROS interfaces in Python.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|