Unverified Commit 7e3e11b3 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python313Packages.colcon-notification: init at 0.3.0 (#397636)

parents 28e65222 ebd02c0c
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  colcon,
  notify2,
  pytestCheckHook,
  scspell,
  setuptools,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "colcon-notification";
  version = "0.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "colcon";
    repo = "colcon-notification";
    tag = version;
    hash = "sha256-78LruNk3KlHFgwujSbnbkjC24IN6jGnfRN+qdjvZh+k=";
  };
  build-system = [ setuptools ];
  dependencies = [
    colcon
    notify2
  ];

  nativeCheckInputs = [
    pytestCheckHook
    scspell
    writableTmpDirAsHomeHook
  ];

  pythonImportsCheck = [
    "colcon_notification"
  ];

  disabledTestPaths = [
    # Linting/formatting tests are not relevant and would require extra dependencies
    "test/test_flake8.py"
  ];

  meta = {
    description = "Extension for colcon-core to provide status notifications";
    homepage = "https://github.com/colcon/colcon-notification";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2667,6 +2667,8 @@ self: super: with self; {
  colcon-defaults = callPackage ../development/python-modules/colcon-defaults { };
  colcon-notification = callPackage ../development/python-modules/colcon-notification { };
  collections-extended = callPackage ../development/python-modules/collections-extended { };
  collidoscope = callPackage ../development/python-modules/collidoscope { };