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/rosinstall-generator/default.nix

20 lines
523 B
Nix
Raw Normal View History

2019-03-21 00:23:14 -04:00
{ lib, buildPythonPackage, fetchPypi, catkin-pkg, rosdistro, rospkg, pyyaml }:
2019-03-11 22:15:02 -04:00
buildPythonPackage rec {
pname = "rosinstall_generator";
version = "0.1.14";
src = fetchPypi {
inherit pname version;
sha256 = "058wld3gcnziprsgm7c5pvdscm181nywshsfpxddyhcqr12dswjk";
};
propagatedBuildInputs = [ catkin-pkg rosdistro rospkg pyyaml ];
2019-03-21 00:23:14 -04:00
meta = with lib; {
2019-03-11 22:15:02 -04:00
description = "A tool to generator rosinstall files";
homepage = http://wiki.ros.org/rosinstall_generator;
2019-03-21 00:23:14 -04:00
license = licenses.bsd3;
2019-03-11 22:15:02 -04:00
};
}