blob: 00b89b41f05f989ac6db593bf50a1615d17d9e76 (
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
|
{
lib,
buildPythonPackage,
catkin-pkg,
distro,
distutils,
fetchFromGitHub,
pytestCheckHook,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
pname = "rospkg";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ros-infrastructure";
repo = "rospkg";
tag = version;
hash = "sha256-YRBmL+aXQ/0rxivERja9ng+GqL8NQGmNYhKjMY7+6nc=";
};
build-system = [ setuptools ];
setupHook = ./setup-hook.sh;
dependencies = [
catkin-pkg
distro
distutils
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "rospkg" ];
meta = {
description = "ROS package library for Python";
homepage = "http://wiki.ros.org/rospkg";
changelog = "https://github.com/ros-infrastructure/rospkg/blob/${version}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ guelakais ];
};
}
|