blob: 688348b528578d51a7ceb9f40f6ec1ddb73bbb60 (
about) (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
colcon,
notify2,
pytestCheckHook,
scspell,
setuptools,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "colcon-notification";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "colcon";
repo = "colcon-notification";
tag = version;
hash = "sha256-78LruNk3KlHFgwujSbnbkjC24IN6jGnfRN+qdjvZh+k=";
};
build-system = [ setuptools ];
dependencies = [
colcon
notify2
];
nativeCheckInputs = [
pytestCheckHook
scspell
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"colcon_notification"
];
disabledTestPaths = [
# Linting/formatting tests are not relevant and would require extra dependencies
"test/test_flake8.py"
];
meta = {
description = "Extension for colcon-core to provide status notifications";
homepage = "https://github.com/colcon/colcon-notification";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
}
|