mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
24 lines
892 B
Nix
24 lines
892 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-ament-cmake-pytest";
|
|
version = "1.3.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/humble/ament_cmake_pytest/1.3.7-1.tar.gz";
|
|
name = "1.3.7-1.tar.gz";
|
|
sha256 = "3b3ad5728499a9f57ebd15da71bf258d3daef3b1f733395a99c0e2d3b3bb97ab";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-test pythonPackages.pytest ];
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test pythonPackages.pytest ];
|
|
|
|
meta = {
|
|
description = ''The ability to run Python tests using pytest in the ament buildsystem in CMake.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|