2020-09-09 15:37:07 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-09-09 15:37:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, python3Packages, rospy, rosserial-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-rosserial-python";
|
2021-04-09 14:28:48 -04:00
|
|
|
version = "0.9.2-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-09 14:28:48 -04:00
|
|
|
url = "https://github.com/ros-gbp/rosserial-release/archive/release/noetic/rosserial_python/0.9.2-1.tar.gz";
|
|
|
|
name = "0.9.2-1.tar.gz";
|
|
|
|
sha256 = "0e115dc3f3a969b38ce2eb670dd8db6caa9266857dde5c2d2032a8ef3ff83f59";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-09-09 15:37:07 -04:00
|
|
|
propagatedBuildInputs = [ diagnostic-msgs python3Packages.pyserial rospy rosserial-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A Python-based implementation of the rosserial protocol.";
|
2020-09-09 15:37:07 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|