2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-06-26 22:39:38 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, roslint, prbt-moveit-config, catkin, pythonPackages, pilz-msgs, prbt-pg70-support, 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-11-07 17:17:35 -05:00
|
|
|
version = "0.4.7-r1";
|
2019-04-06 23:23:57 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/PilzDE/pilz_industrial_motion-release/archive/release/melodic/pilz_robot_programming/0.4.7-1.tar.gz";
|
|
|
|
name = "0.4.7-1.tar.gz";
|
|
|
|
sha256 = "6f6571ca11129efd57d8035771d53ef9609f51f2f840c4dba2c761be788733dd";
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-06 23:23:57 -04:00
|
|
|
buildInputs = [ roslint rospy ];
|
2019-06-26 22:39:38 -04:00
|
|
|
checkInputs = [ prbt-moveit-config prbt-pg70-support rostest pythonPackages.mock pilz-industrial-motion-testutils pythonPackages.coverage pythonPackages.docopt ];
|
2019-05-05 02:02:52 -04:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|