blob: 4cd2b540770bfec9ee8b5faa2f0b50cc3c2ac722 (
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
40
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
importlib-metadata,
importlib-resources,
}:
buildPythonPackage rec {
pname = "ament-package";
version = "0.18.2";
pyproject = true;
src = fetchFromGitHub {
owner = "ament";
repo = "ament_package";
tag = version;
hash = "sha256-m0tDgbjytBKhdqZrSmhKHRm69BZK54NHWmo+O5J8m6Q=";
};
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 ];
};
}
|