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

This commit is contained in:
Gaétan Lepage
2025-04-23 17:16:46 +02:00
committed by GitHub
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
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
View File
@@ -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 { };