blob: 16d0d8ae905edc54d5eb2afa465ee3e0d9da98cf (
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
|
{
lib,
buildPythonPackage,
colcon,
fetchFromGitHub,
pytestCheckHook,
pytest-cov-stub,
pyyaml,
scspell,
setuptools,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-metadata";
version = "0.2.5";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-metadata";
tag = version;
hash = "sha256-CCyhtTsSjaeY/OKO8F1zYpk8yA4HlUoXVTVkyYEpVU8=";
};
build-system = [ setuptools ];
dependencies = [
colcon
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
scspell
writableTmpDirAsHomeHook
];
disabledTestPaths = [
"test/test_flake8.py"
];
pythonImportsCheck = [
"colcon_metadata"
];
meta = {
description = "Extension for colcon-core to read package metadata from files";
homepage = "http://colcon.readthedocs.io/";
downloadPage = "https://github.com/colcon/colcon-metadata";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
|