python3Packages.catkin-pkg: init at 0.5.2

This commit is contained in:
Jon Seager 2024-04-18 12:35:27 +01:00
parent ac694ae628
commit 3589873e86
No known key found for this signature in database
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
docutils,
pyparsing,
python-dateutil,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "catkin-pkg";
version = "0.5.2";
pyproject = true;
src = fetchFromGitHub {
owner = "ros-infrastructure";
repo = "catkin_pkg";
rev = version;
hash = "sha256-DjaPpLDsLpYOZukf5tYe6ZetSNTe/DJ2lS9BUsehZ8k=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
docutils
pyparsing
python-dateutil
];
pythonImportsCheck = [ "catkin_pkg" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "test/test_flake8.py" ];
meta = {
description = "Library for retrieving information about catkin packages.";
homepage = "http://wiki.ros.org/catkin_pkg";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jnsgruk ];
};
}

View File

@ -1932,6 +1932,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 { };