Commit d6ae12ca authored by GueLaKais's avatar GueLaKais
Browse files

python313Packages.colcon-package-selection: init at 0.2.10

parent 2e6dd569
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  colcon,
  pytest-cov-stub,
  pytestCheckHook,
  setuptools,
  scspell,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "colcon-package-selection";
  version = "0.2.10";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "colcon";
    repo = "colcon-package-selection";
    tag = version;
    hash = "sha256-27Kk1l/Zvc18d4EfFPdUR/yeCS9fU1VJuHglyjPwnh0=";
  };

  build-system = [ setuptools ];

  dependencies = [
    colcon
  ];

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

  pythonImportsCheck = [
    "colcon_package_selection"
  ];

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

  meta = {
    description = "Extension for colcon to select the packages to process";
    homepage = "http://colcon.readthedocs.io/";
    downloadPage = "https://github.com/colcon/colcon-package-selection";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2827,6 +2827,8 @@ self: super: with self; {
    callPackage ../development/python-modules/colcon-package-information
      { };
  colcon-package-selection = callPackage ../development/python-modules/colcon-package-selection { };
  colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { };
  colcon-recursive-crawl = callPackage ../development/python-modules/colcon-recursive-crawl { };