Unverified Commit 2ff9490e authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python313Packages.colcon-hardware-acceleration: init at 0.8.0 (#441026)

parents 2e03ab6f 0888da72
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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
      { };