1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-23 23:39:54 +03:00
nix-ros-overlay/dashing/rosidl-runtime-py/default.nix

25 lines
982 B
Nix
Raw Normal View History

# 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 }:
buildRosPackage {
pname = "ros-dashing-rosidl-runtime-py";
version = "0.7.9-r1";
src = fetchurl {
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";
};
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 ];
};
}