python3Packages.catkin-pkg: (re)init at 1.1.0 (#447138)

This commit is contained in:
Jon Seager
2025-09-30 10:32:42 +02:00
committed by GitHub
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
docutils,
pyparsing,
python-dateutil,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "catkin-pkg";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ros-infrastructure";
repo = "catkin_pkg";
tag = version;
hash = "sha256-V4iurFt1WmY2jXy0A4Qa2eKMCWmR+Hs3d9pru0/zUSM=";
};
build-system = [ setuptools ];
dependencies = [
docutils
pyparsing
python-dateutil
];
pythonImportsCheck = [ "catkin_pkg" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "test/test_flake8.py" ];
meta = {
changelog = "https://github.com/ros-infrastructure/catkin_pkg/blob/${src.tag}/CHANGELOG.rst";
description = "Library for retrieving information about catkin packages";
homepage = "http://wiki.ros.org/catkin_pkg";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
wentasah
];
};
}
+2
View File
@@ -2398,6 +2398,8 @@ self: super: with self; {
};
};
catkin-pkg = callPackage ../development/python-modules/catkin-pkg { };
catppuccin = callPackage ../development/python-modules/catppuccin { };
cattrs = callPackage ../development/python-modules/cattrs { };