2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, python3Packages }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ament-cmake-pytest";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.5.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/jazzy/ament_cmake_pytest/2.5.3-1.tar.gz";
|
|
|
|
name = "2.5.3-1.tar.gz";
|
|
|
|
sha256 = "fa21696c79b947b9f4c94dcef72a48a395424d160073183bb55ce6f46274eacc";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-01-03 13:42:37 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-test python3Packages.pytest ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test python3Packages.pytest ];
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The ability to run Python tests using pytest in the ament buildsystem in CMake.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|