2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-pep257, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-tf-transformations";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "1.0.1-r3";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/tf_transformations_release/archive/release/rolling/tf_transformations/1.0.1-3.tar.gz";
|
|
|
|
name = "1.0.1-3.tar.gz";
|
|
|
|
sha256 = "ce64f280076a6c186e55f51063885f71af7270cc47bfaecb76958bb957d41a02";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Reimplementation of the tf/transformations.py library for common Python spatial operations'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|