python312Packages.colcon-argcomplete: init at 0.3.3 (#397139)

This commit is contained in:
Martin Weinelt
2025-04-22 00:07:00 +02:00
committed by GitHub
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
setuptools,
argcomplete,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "colcon-argcomplete";
version = "0.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-argcomplete";
tag = version;
hash = "sha256-A6ia9OVZa+DwChVwCmkjvDtUloiFQyqtmhlaApbD7iI=";
};
build-system = [ setuptools ];
dependencies = [
colcon
argcomplete
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
disabledTestPaths = [
"test/test_flake8.py"
"test/test_spell_check.py"
];
pythonImportsCheck = [
"colcon_argcomplete"
];
meta = {
description = "An extension for colcon-core to provide command line completion using argcomplete";
homepage = "https://github.com/colcon/colcon-argcomplete";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
+2
View File
@@ -2663,6 +2663,8 @@ self: super: with self; {
colcon = callPackage ../development/python-modules/colcon { };
colcon-argcomplete = callPackage ../development/python-modules/colcon-argcomplete { };
collections-extended = callPackage ../development/python-modules/collections-extended { };
collidoscope = callPackage ../development/python-modules/collidoscope { };