1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/ament-cmake-pycodestyle/default.nix

27 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test, ament-pycodestyle }:
buildRosPackage {
pname = "ros-rolling-ament-cmake-pycodestyle";
version = "0.19.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_cmake_pycodestyle/0.19.0-1.tar.gz";
name = "0.19.0-1.tar.gz";
sha256 = "59878312c573c70d19af4183d727647a0985b3a919898c38bf1d1be3c91bfeb9";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
propagatedBuildInputs = [ ament-cmake-test ament-pycodestyle ];
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ament-pycodestyle ];
meta = {
description = "The CMake API for ament_pycodestyle to check code against the style conventions in
PEP 8.";
license = with lib.licenses; [ asl20 ];
};
}