nix-ros-overlay/distros/rolling/action-tutorials-py/default.nix

25 lines
865 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-tutorials-interfaces, ament-copyright, ament-flake8, ament-pep257, pythonPackages, rclpy }:
buildRosPackage {
pname = "ros-rolling-action-tutorials-py";
version = "0.34.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/rolling/action_tutorials_py/0.34.2-1.tar.gz";
name = "0.34.2-1.tar.gz";
sha256 = "02c105b0ac32cf59efac4792b2992554fdf1572149ebfcfe39451b5b05d1f21c";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ action-tutorials-interfaces rclpy ];
meta = {
description = "Python action tutorial code";
license = with lib.licenses; [ asl20 ];
};
}