2019-03-21 00:23:14 -04:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, makeWrapper, vcstools, pyyaml, rosdistro
|
|
|
|
, catkin-pkg, wstool, rospkg }:
|
|
|
|
|
2019-04-06 01:46:54 -04:00
|
|
|
buildPythonPackage rec {
|
2019-03-21 00:23:14 -04:00
|
|
|
pname = "rosinstall";
|
|
|
|
version = "0.7.8";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0h7d8ynv44c68sbfn28xw4k18k3ip6252x7r7bqw6b5cifzhia1b";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = [ vcstools pyyaml rosdistro catkin-pkg wstool rospkg ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The installer for ROS";
|
2019-08-30 00:38:19 -04:00
|
|
|
homepage = "http://wiki.ros.org/rosinstall";
|
2019-03-21 00:23:14 -04:00
|
|
|
license = licenses.bsd3;
|
2019-08-30 00:38:19 -04:00
|
|
|
maintainers = with maintainers; [ lopsided98 ];
|
2019-03-21 00:23:14 -04:00
|
|
|
};
|
2019-04-06 01:46:54 -04:00
|
|
|
}
|