1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/eloquent/py-trees-ros/default.nix

26 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, geometry-msgs, py-trees, py-trees-ros-interfaces, python3Packages, pythonPackages, rcl-interfaces, rclpy, ros2topic, sensor-msgs, std-msgs, tf2-ros, unique-identifier-msgs }:
buildRosPackage {
pname = "ros-eloquent-py-trees-ros";
version = "2.0.9-r1";
src = fetchurl {
url = "https://github.com/stonier/py_trees_ros-release/archive/release/eloquent/py_trees_ros/2.0.9-1.tar.gz";
name = "2.0.9-1.tar.gz";
sha256 = "40cc4048935dab5ccf355020e7e69496deaf5be51c658ebeac38105731563414";
};
buildType = "ament_python";
buildInputs = [ python3Packages.setuptools ];
checkInputs = [ pythonPackages.pytest ];
propagatedBuildInputs = [ geometry-msgs py-trees py-trees-ros-interfaces rcl-interfaces rclpy ros2topic sensor-msgs std-msgs tf2-ros unique-identifier-msgs ];
meta = {
description = ''ROS2 extensions and behaviours for py_trees.'';
license = with lib.licenses; [ bsdOriginal ];
};
}