python313Packages.colcon-hardware-acceleration: init at 0.8.0

This commit is contained in:
GueLaKais
2026-02-15 22:47:09 +01:00
committed by Sigmanificient
parent 531cbe0545
commit 0888da72e6
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
pytest-cov-stub,
pytestCheckHook,
setuptools,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage (finalAttrs: {
pname = "colcon-hardware-acceleration";
version = "0.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-hardware-acceleration";
tag = finalAttrs.version;
hash = "sha256-oDm9sAk280bGn+KJib5vkVD4k29FInzdZkB2WnOLNUE=";
};
build-system = [ setuptools ];
dependencies = [
colcon
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_hardware_acceleration"
];
meta = {
description = "Extension for colcon-core to include embedded and Hardware Acceleration capabilities";
homepage = "https://github.com/colcon/colcon-hardware-acceleration";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
})
+4
View File
@@ -2942,6 +2942,10 @@ self: super: with self; {
colcon-devtools = callPackage ../development/python-modules/colcon-devtools { };
colcon-hardware-acceleration =
callPackage ../development/python-modules/colcon-hardware-acceleration
{ };
colcon-installed-package-information =
callPackage ../development/python-modules/colcon-installed-package-information
{ };