Unverified Commit 0eef83d7 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python313Packages.rospkg: init at 1.6.0 (#401730)

parents 10e819d2 2b0fb592
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
export ROS_OS_OVERRIDE=nixos
+2 −0
Original line number Diff line number Diff line
@@ -16332,6 +16332,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 { };