1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 importlib-metadata,
7 importlib-resources,
8}:
9
10buildPythonPackage rec {
11 pname = "ament-package";
12 version = "0.18.1";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "ament";
17 repo = "ament_package";
18 tag = version;
19 hash = "sha256-M2SSGmzxlOITNzWTZ92/PtTVGtKMU/IwJG0VMhzDLR8=";
20 };
21
22 build-system = [
23 setuptools
24 ];
25
26 dependencies = [
27 importlib-metadata
28 importlib-resources
29 ];
30
31 pythonImportsCheck = [ "ament_package" ];
32
33 # Tests currently broken
34 doCheck = false;
35
36 meta = {
37 description = "Parser for the manifest files in the ament buildsystem";
38 homepage = "https://github.com/ament/ament_package";
39 license = lib.licenses.asl20;
40 maintainers = with lib.maintainers; [ guelakais ];
41 };
42}