2024-11-29 13:44:25 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, axis-msgs, camera-info-manager-py, ptz-action-server-msgs, python3Packages, pythonPackages, sensor-msgs, std-srvs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-axis-camera";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.0.1-r1";
|
2024-11-29 13:44:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/axis_camera-release/archive/release/jazzy/axis_camera/3.0.1-1.tar.gz";
|
|
|
|
name = "3.0.1-1.tar.gz";
|
|
|
|
sha256 = "6ff2fae8e7397a53bab64d3dab58517c9f549823a625f2d2987fce04f6851513";
|
2024-11-29 13:44:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ axis-msgs camera-info-manager-py ptz-action-server-msgs python3Packages.requests sensor-msgs std-srvs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ROS 2 driver for fixed and PTZ Axis cameras";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|