python313Packages.colcon-package-information: init at 0.4.0 (#411851)
This commit is contained in:
commit
e4b54494cb
@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
colcon,
|
||||||
|
packaging,
|
||||||
|
pytest-cov-stub,
|
||||||
|
pytestCheckHook,
|
||||||
|
setuptools,
|
||||||
|
scspell,
|
||||||
|
writableTmpDirAsHomeHook,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "colcon-package-information";
|
||||||
|
version = "0.4.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "colcon";
|
||||||
|
repo = "colcon-package-information";
|
||||||
|
tag = version;
|
||||||
|
hash = "sha256-BnDrnIgzXrNAPIg7sr8CcaVdisplJdAvjyZ28r4o/wI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
colcon
|
||||||
|
packaging
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytest-cov-stub
|
||||||
|
pytestCheckHook
|
||||||
|
scspell
|
||||||
|
writableTmpDirAsHomeHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"colcon_package_information"
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
"test/test_flake8.py"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Extension for colcon-core to output package information";
|
||||||
|
homepage = "http://colcon.readthedocs.io/";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = with lib.maintainers; [ guelakais ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -2771,6 +2771,10 @@ self: super: with self; {
|
|||||||
|
|
||||||
colcon-output = callPackage ../development/python-modules/colcon-output { };
|
colcon-output = callPackage ../development/python-modules/colcon-output { };
|
||||||
|
|
||||||
|
colcon-package-information =
|
||||||
|
callPackage ../development/python-modules/colcon-package-information
|
||||||
|
{ };
|
||||||
|
|
||||||
colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { };
|
colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { };
|
||||||
|
|
||||||
colcon-ros-domain-id-coordinator =
|
colcon-ros-domain-id-coordinator =
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user