2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-05-05 02:02:52 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, roslint, prbt-moveit-config, prbt-pg70-support, pythonPackages, catkin, pilz-msgs, rostest, pilz-industrial-motion-testutils, moveit-commander, rospy, tf-conversions, tf, pilz-trajectory-generation }:
|
2019-04-06 23:23:57 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-pilz-robot-programming";
|
2019-04-09 23:25:34 -04:00
|
|
|
version = "0.4.3";
|
2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-09 23:25:34 -04:00
|
|
|
url = https://github.com/PilzDE/pilz_industrial_motion-release/archive/release/melodic/pilz_robot_programming/0.4.3-0.tar.gz;
|
|
|
|
sha256 = "b753f1fdac939cc51563b027e7c282d1a218977a7ea1c954123696d7fe8dcaf5";
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ roslint rospy ];
|
2019-05-05 02:02:52 -04:00
|
|
|
checkInputs = [ prbt-moveit-config prbt-pg70-support rostest pilz-industrial-motion-testutils pythonPackages.coverage pythonPackages.docopt ];
|
|
|
|
propagatedBuildInputs = [ pythonPackages.psutil pilz-msgs moveit-commander rospy tf-conversions tf pilz-trajectory-generation ];
|
2019-04-06 23:23:57 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''An Easy to use API to execute standard industrial robot commands like Ptp, Lin, Circ and Sequence using Moveit.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
}
|