Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colcon,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
pytest-repeat,
|
|
pytest-rerunfailures,
|
|
scspell,
|
|
setuptools,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
buildPythonPackage {
|
|
pname = "colcon-ros-domain-id-coordinator";
|
|
version = "0.2.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colcon";
|
|
repo = "colcon-ros-domain-id-coordinator";
|
|
tag = "0.2.1";
|
|
hash = "sha256-8DTpixa5ZGuSOpmwoeJgxLQI+17XheLxPWcJymE0GqM=";
|
|
};
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
colcon
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
pytest-repeat
|
|
pytest-rerunfailures
|
|
scspell
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"test/test_flake8.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"colcon_ros_domain_id_coordinator"
|
|
];
|
|
|
|
meta = {
|
|
description = "Extension for colcon-core to coordinate ROS_DOMAIN_ID values across multiple terminals";
|
|
homepage = "https://github.com/colcon/colcon-ros-domain-id-coordinator";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ guelakais ];
|
|
};
|
|
}
|