Merge pull request #333224 from dotlambda/python3Packages.catkin-pkg

python312Packages.catkin-pkg: 0.5.2 -> 1.0.0
This commit is contained in:
Jon Seager 2024-08-08 15:38:48 +01:00 committed by GitHub
commit c1af352111
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "catkin-pkg";
version = "0.5.2";
version = "1.0.0";
pyproject = true;
@ -19,15 +19,16 @@ buildPythonPackage rec {
owner = "ros-infrastructure";
repo = "catkin_pkg";
rev = version;
hash = "sha256-DjaPpLDsLpYOZukf5tYe6ZetSNTe/DJ2lS9BUsehZ8k=";
hash = "sha256-lHUKhE9dQLO1MbkstUEiGrHc9Rm+bY/AmgLyh7AbvFQ=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
docutils
pyparsing
python-dateutil
setuptools
];
pythonImportsCheck = [ "catkin_pkg" ];
@ -37,6 +38,7 @@ buildPythonPackage rec {
disabledTestPaths = [ "test/test_flake8.py" ];
meta = {
changelog = "https://github.com/ros-infrastructure/catkin_pkg/blob/${version}/CHANGELOG.rst";
description = "Library for retrieving information about catkin packages";
homepage = "http://wiki.ros.org/catkin_pkg";
license = lib.licenses.bsd3;