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/colcon/recursive-crawl.nix
Ben Wolsieffer 40ccc530bb Initial ROS 2 support.
The basic packages build, but there is no guarantee that they work correctly.
2019-09-05 22:47:17 -04:00

25 lines
633 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
buildPythonPackage rec {
pname = "colcon-recursive-crawl";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1g27r4ca6y08rby1jgvfnwpkklmg66m5dx59mmpz4pjwqlp5r5fw";
};
propagatedBuildInputs = [ colcon-core ];
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to recursively crawl for packages.";
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ lopsided98 ];
};
}