blob: 6be5ca36dbf95236be35d52e77447776f43afc78 (
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
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
colcon,
pylint,
pytestCheckHook,
pytest-cov-stub,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-library-path";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-library-path";
tag = version;
hash = "sha256-/Zb8F/WcwpFMeJNLaf69ozXX8f+9gb+WXBda+nc/7MM=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
colcon
];
nativeCheckInputs = [
pylint
pytest-cov-stub
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_library_path"
];
disabledTestPaths = [
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon to set the library path environment variable";
homepage = "https://github.com/colcon/colcon-library-path";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
|