1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00

colcon: add package-information extension

This commit is contained in:
Almin Iriskic 2022-11-11 15:24:23 +01:00 committed by Ben Wolsieffer
parent 64058fcd1d
commit eb1ce19758
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
buildPythonPackage rec {
pname = "colcon-package-information";
version = "0.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "2wsSAL/skfzzltnXZx60EPDrWhiggZ93jzNeusguC54=";
};
propagatedBuildInputs = [ colcon-core ];
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to output package information.";
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}

View file

@ -25,6 +25,8 @@ self: super: with self.lib; let
colcon-output = pySelf.callPackage ./colcon/output.nix { };
colcon-package-information = pySelf.callPackage ./colcon/package-information.nix { };
colcon-package-selection = pySelf.callPackage ./colcon/package-selection.nix { };
colcon-parallel-executor = pySelf.callPackage ./colcon/parallel-executor.nix { };
@ -61,6 +63,7 @@ in {
colcon-core
colcon-library-path
colcon-metadata
colcon-package-information
colcon-package-selection
colcon-python-setup-py
colcon-recursive-crawl