pythonPackages312.colcon-mixin: init at 0.2.3

This commit is contained in:
GueLaKais
2025-05-19 12:32:22 +02:00
parent 7f36fad4ff
commit 7c0b1033a3
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
pytest-cov,
pytestCheckHook,
setuptools,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-mixin";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-mixin";
tag = version;
hash = "sha256-XQpRDBTtrFOOlCRXKVImUtwrwirO0ELWifUpfQuyrrY=";
};
build-system = [ setuptools ];
dependencies = [
colcon
];
nativeCheckInputs = [
pytest-cov
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_mixin"
];
disabledTestPaths = [
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon-core to provide mixin functionality";
homepage = "https://github.com/colcon/colcon-mixin";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
+2
View File
@@ -2685,6 +2685,8 @@ self: super: with self; {
colcon-defaults = callPackage ../development/python-modules/colcon-defaults { };
colcon-mixin = callPackage ../development/python-modules/colcon-mixin { };
colcon-notification = callPackage ../development/python-modules/colcon-notification { };
collections-extended = callPackage ../development/python-modules/collections-extended { };