python313Packages.colcon-hardware-acceleration: init at 0.8.0
This commit is contained in:
committed by
Sigmanificient
parent
531cbe0545
commit
0888da72e6
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user