python313Packages.rospkg: init at 1.6.0

This commit is contained in:
GueLaKais
2025-11-07 10:34:26 +01:00
parent 102a9fc924
commit 2b0fb592f1
3 changed files with 52 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
catkin-pkg,
distro,
distutils,
fetchFromGitHub,
pytestCheckHook,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "rospkg";
version = "1.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ros-infrastructure";
repo = "rospkg";
tag = version;
hash = "sha256-6nfdY+p3P3iGuj+7Lo7ybsZ+1x104m7WzGgxr8dDDuw=";
};
build-system = [ setuptools ];
setupHook = ./setup-hook.sh;
dependencies = [
catkin-pkg
distro
distutils
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportCheck = [ "rospkg" ];
meta = {
description = "ROS package library for Python";
homepage = "http://wiki.ros.org/rospkg";
changelog = "https://github.com/ros-infrastructure/rospkg/blob/${version}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ guelakais ];
};
}
@@ -0,0 +1 @@
export ROS_OS_OVERRIDE=nixos
+2
View File
@@ -16212,6 +16212,8 @@ self: super: with self; {
rosbags = callPackage ../development/python-modules/rosbags { };
rospkg = callPackage ../development/python-modules/rospkg { };
rotary-embedding-torch = callPackage ../development/python-modules/rotary-embedding-torch { };
rouge-score = callPackage ../development/python-modules/rouge-score { };