1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/rosdistro/default.nix

20 lines
480 B
Nix
Raw Normal View History

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