Unverified Commit 21047189 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

python313Packages.ament-package: init at 0.17.2 (#399311)

parents 2b5031d8 87349255
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  importlib-metadata,
  importlib-resources,
}:

buildPythonPackage rec {
  pname = "ament-package";
  version = "0.17.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ament";
    repo = "ament_package";
    tag = version;
    hash = "sha256-+Jfj8mkvrpJnd3oPhOo2E5cvVO9ujez0mrpsj2taOOU=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    importlib-metadata
    importlib-resources
  ];

  pythonImportsCheck = [ "ament_package" ];

  # Tests currently broken
  doCheck = false;

  meta = {
    description = "The parser for the manifest files in the ament buildsystem";
    homepage = "https://github.com/ament/ament_package";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -632,6 +632,8 @@ self: super: with self; {
  amcrest = callPackage ../development/python-modules/amcrest { };
  ament-package = callPackage ../development/python-modules/ament-package { };
  amply = callPackage ../development/python-modules/amply { };
  amqp = callPackage ../development/python-modules/amqp { };