python313Packages.colcon-parallel-executor: init at 0.3.0

This commit is contained in:
GueLaKais
2025-05-19 12:29:58 +02:00
parent 2615e4f75c
commit 6bd72ea41a
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
pytestCheckHook,
setuptools,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-parallel-executor";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-parallel-executor";
tag = version;
hash = "sha256-uhVl1fqoyMF/L98PYCmM6m7+52c4mWj2qlna5sz/RxE=";
};
build-system = [ setuptools ];
dependencies = [
colcon
];
nativeCheckInputs = [
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_parallel_executor"
];
disabledTestPaths = [
# Skip the linter tests
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon-core to process packages in parallel";
homepage = "https://github.com/colcon/colcon-parallel-executor";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
+2
View File
@@ -2687,6 +2687,8 @@ self: super: with self; {
colcon-notification = callPackage ../development/python-modules/colcon-notification { };
colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { };
collections-extended = callPackage ../development/python-modules/collections-extended { };
collidoscope = callPackage ../development/python-modules/collidoscope { };