python313Packages.colcon-library-path: init at 0.2.1 (#411072)

This commit is contained in:
Yohann Boniface
2025-08-08 06:53:31 +02:00
committed by GitHub
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
colcon,
pylint,
pytestCheckHook,
pytest-cov-stub,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-library-path";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-library-path";
tag = version;
hash = "sha256-/Zb8F/WcwpFMeJNLaf69ozXX8f+9gb+WXBda+nc/7MM=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
colcon
];
nativeCheckInputs = [
pylint
pytest-cov-stub
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_library_path"
];
disabledTestPaths = [
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon to set the library path environment variable";
homepage = "https://github.com/colcon/colcon-library-path";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
+2
View File
@@ -2759,6 +2759,8 @@ self: super: with self; {
colcon-defaults = callPackage ../development/python-modules/colcon-defaults { };
colcon-library-path = callPackage ../development/python-modules/colcon-library-path { };
colcon-mixin = callPackage ../development/python-modules/colcon-mixin { };
colcon-notification = callPackage ../development/python-modules/colcon-notification { };