Unverified Commit ded992f4 authored by Jon Seager's avatar Jon Seager Committed by GitHub
Browse files

python3Packages.catkin-pkg: (re)init at 1.1.0 (#447138)

parents 299f6d21 dff00dc5
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  docutils,
  pyparsing,
  python-dateutil,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "catkin-pkg";
  version = "1.1.0";

  pyproject = true;

  src = fetchFromGitHub {
    owner = "ros-infrastructure";
    repo = "catkin_pkg";
    tag = version;
    hash = "sha256-V4iurFt1WmY2jXy0A4Qa2eKMCWmR+Hs3d9pru0/zUSM=";
  };

  build-system = [ setuptools ];

  dependencies = [
    docutils
    pyparsing
    python-dateutil
  ];

  pythonImportsCheck = [ "catkin_pkg" ];

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTestPaths = [ "test/test_flake8.py" ];

  meta = {
    changelog = "https://github.com/ros-infrastructure/catkin_pkg/blob/${src.tag}/CHANGELOG.rst";
    description = "Library for retrieving information about catkin packages";
    homepage = "http://wiki.ros.org/catkin_pkg";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [
      wentasah
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2398,6 +2398,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 { };