blob: 5a9e4894eb52cbb24715ef254f5b108600113dc7 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
docutils,
pyparsing,
python-dateutil,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "catkin-pkg";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ros-infrastructure";
repo = "catkin_pkg";
tag = version;
hash = "sha256-V4iurFt1WmY2jXy0A4Qa2eKMCWmR+Hs3d9pru0/zUSM=";
};
build-system = [ setuptools ];
dependencies = [
docutils
pyparsing
python-dateutil
];
pythonImportsCheck = [ "catkin_pkg" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "test/test_flake8.py" ];
meta = {
changelog = "https://github.com/ros-infrastructure/catkin_pkg/blob/${src.tag}/CHANGELOG.rst";
description = "Library for retrieving information about catkin packages";
homepage = "http://wiki.ros.org/catkin_pkg";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
wentasah
];
};
}
|