mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
891 B
Nix
24 lines
891 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-ament-cmake-pytest";
|
|
version = "2.5.3-r1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-test python3Packages.pytest ];
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test python3Packages.pytest ];
|
|
|
|
meta = {
|
|
description = "The ability to run Python tests using pytest in the ament buildsystem in CMake.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|