python313Packages.colcon-package-selection: init at 0.2.10

This commit is contained in:
GueLaKais
2025-05-26 19:42:52 +02:00
parent 2e6dd569f2
commit d6ae12ca77
2 changed files with 55 additions and 0 deletions
@@ -0,0 +1,53 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
pytest-cov-stub,
pytestCheckHook,
setuptools,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-package-selection";
version = "0.2.10";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-package-selection";
tag = version;
hash = "sha256-27Kk1l/Zvc18d4EfFPdUR/yeCS9fU1VJuHglyjPwnh0=";
};
build-system = [ setuptools ];
dependencies = [
colcon
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_package_selection"
];
disabledTestPaths = [
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon to select the packages to process";
homepage = "http://colcon.readthedocs.io/";
downloadPage = "https://github.com/colcon/colcon-package-selection";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
+2
View File
@@ -2827,6 +2827,8 @@ self: super: with self; {
callPackage ../development/python-modules/colcon-package-information
{ };
colcon-package-selection = callPackage ../development/python-modules/colcon-package-selection { };
colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { };
colcon-recursive-crawl = callPackage ../development/python-modules/colcon-recursive-crawl { };