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

python313Packages.colcon-library-path: init at 0.2.1 (#411072)

parents 743e9cab 596c6120
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  colcon,
  pylint,
  pytestCheckHook,
  pytest-cov-stub,
  scspell,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "colcon-library-path";
  version = "0.2.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "colcon";
    repo = "colcon-library-path";
    tag = version;
    hash = "sha256-/Zb8F/WcwpFMeJNLaf69ozXX8f+9gb+WXBda+nc/7MM=";
  };

  build-system = [ setuptools ];

  propagatedBuildInputs = [
    colcon
  ];

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

  pythonImportsCheck = [
    "colcon_library_path"
  ];

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

  meta = {
    description = "Extension for colcon to set the library path environment variable";
    homepage = "https://github.com/colcon/colcon-library-path";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2759,6 +2759,8 @@ self: super: with self; {
  colcon-defaults = callPackage ../development/python-modules/colcon-defaults { };
  colcon-library-path = callPackage ../development/python-modules/colcon-library-path { };
  colcon-mixin = callPackage ../development/python-modules/colcon-mixin { };
  colcon-notification = callPackage ../development/python-modules/colcon-notification { };