2024-05-24 14:00:52 +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, pythonPackages, rosidl-parser }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rosidl-pycommon";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "4.6.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/jazzy/rosidl_pycommon/4.6.3-1.tar.gz";
|
|
|
|
name = "4.6.3-1.tar.gz";
|
|
|
|
sha256 = "4729c73cead88e8163f17ab2e684735079c60554b72af0dd597e4aa621127491";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ rosidl-parser ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Common Python functions used by rosidl packages.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|