Files
nixpkgs/pkgs/development/python-modules/ament-package/default.nix
T
Martin Weinelt a44f8fc891 python3Packages.ament-package: 0.18.2 -> 8
This commit was automatically generated using update-python-libraries.
2026-02-01 16:41:38 +01:00

43 lines
831 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
importlib-metadata,
importlib-resources,
}:
buildPythonPackage rec {
pname = "ament-package";
version = "8";
pyproject = true;
src = fetchFromGitHub {
owner = "ament";
repo = "ament_package";
tag = "release-alpha${version}";
hash = "sha256-KaP75+95mRmSO0bRDy0LVG+kx1Z4YDn5edsvKq+UXeE=";
};
build-system = [
setuptools
];
dependencies = [
importlib-metadata
importlib-resources
];
pythonImportsCheck = [ "ament_package" ];
# Tests currently broken
doCheck = false;
meta = {
description = "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 ];
};
}