summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/ament-package/default.nix
blob: b14a689ecfc22b8265e1f8be08d09ac60d8c3a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "ament-package";
  version = "0.19.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ament";
    repo = "ament_package";
    tag = finalAttrs.version;
    hash = "sha256-Eqj07xznL5gMYZF1FTPtgxqCIUVD6pFfct2vUcOHOkk=";
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [ "ament_package" ];

  # Tests currently broken
  doCheck = false;

  # The script selects tag release-alpha8
  passthru.skipBulkUpdate = true;

  meta = {
    changelog = "https://github.com/ament/ament_package/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
    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 ];
  };
})