Unverified Commit a80af600 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python313Packages.colcon-test-result: init at 0.3.8 (#411078)

parents a72aeea6 9a6d8159
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  colcon,
  pytest-cov-stub,
  pytestCheckHook,
  scspell,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "colcon-test-result";
  version = "0.3.8";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "colcon";
    repo = "colcon-test-result";
    rev = version;
    hash = "sha256-4t2jGJlwm8ZQkOG+Q2KyZ9Qnhhy5PAHcxxo7lkqSDRA=";
  };

  build-system = [ setuptools ];

  dependencies = [
    colcon
  ];

  nativeCheckInputs = [
    pytest-cov-stub
    pytestCheckHook
    scspell
    writableTmpDirAsHomeHook
  ];

  disabledTestPaths = [
    "test/test_flake8.py"
  ];

  pythonImportsCheck = [
    "colcon_test_result"
  ];

  meta = {
    description = "Extension for colcon to provide test result handling";
    homepage = "https://github.com/colcon/colcon-test-result";
    changelog = "https://github.com/colcon/colcon-test-result/blob/${version}/CHANGELOG.rst";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2910,6 +2910,8 @@ self: super: with self; {
    callPackage ../development/python-modules/colcon-ros-domain-id-coordinator
      { };
  colcon-test-result = callPackage ../development/python-modules/colcon-test-result { };
  colcon-zsh = callPackage ../development/python-modules/colcon-zsh { };
  collections-extended = callPackage ../development/python-modules/collections-extended { };