blob: aa6ad8df8908d0e802c1bd3f9829ae6abdab7ad5 (
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
55
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
coverage,
pytest-cov-stub,
pytestCheckHook,
setuptools,
scspell,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-coveragepy-result";
version = "0.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-coveragepy-result";
tag = version;
hash = "sha256-+xjrmiWaDPjoRwjgP4Ui6+vuG4Nc4ur8DdC8ddiXAG0=";
};
build-system = [ setuptools ];
dependencies = [
colcon
coverage
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_coveragepy_result"
];
disabledTestPaths = [
"test/test_flake8.py" # flake tests doesn't work currently
];
meta = {
description = "Colcon extension for collecting coverage.py results";
homepage = "https://colcon.readthedocs.io/";
downloadPage = "https://github.com/colcon/colcon-coveragepy-result.git";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
|