Unverified Commit 3589873e authored by Jon Seager's avatar Jon Seager
Browse files

python3Packages.catkin-pkg: init at 0.5.2

parent ac694ae6
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  docutils,
  pyparsing,
  python-dateutil,
  setuptools,
  pytestCheckHook,
}:

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

  pyproject = true;

  src = fetchFromGitHub {
    owner = "ros-infrastructure";
    repo = "catkin_pkg";
    rev = version;
    hash = "sha256-DjaPpLDsLpYOZukf5tYe6ZetSNTe/DJ2lS9BUsehZ8k=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    docutils
    pyparsing
    python-dateutil
  ];

  pythonImportsCheck = [ "catkin_pkg" ];

  nativeCheckInputs = [ pytestCheckHook ];

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

  meta = {
    description = "Library for retrieving information about catkin packages.";
    homepage = "http://wiki.ros.org/catkin_pkg";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ jnsgruk ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1932,6 +1932,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 { };