From 0901ba6e722446336f0fb627843705b7d0dbfcf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 8 Aug 2024 06:11:57 -0700 Subject: [PATCH] python312Packages.catkin-pkg: 0.5.2 -> 1.0.0 Diff: https://github.com/ros-infrastructure/catkin_pkg/compare/0.5.2...1.0.0 Changelog: https://github.com/ros-infrastructure/catkin_pkg/blob/1.0.0/CHANGELOG.rst --- pkgs/development/python-modules/catkin-pkg/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/catkin-pkg/default.nix b/pkgs/development/python-modules/catkin-pkg/default.nix index cc1b3a938c0d..a09cc9fd444e 100644 --- a/pkgs/development/python-modules/catkin-pkg/default.nix +++ b/pkgs/development/python-modules/catkin-pkg/default.nix @@ -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;