nix-ros-overlay/distros/iron/ament-flake8/default.nix

23 lines
741 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint, python3Packages }:
buildRosPackage {
pname = "ros-iron-ament-flake8";
version = "0.14.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/iron/ament_flake8/0.14.4-1.tar.gz";
name = "0.14.4-1.tar.gz";
sha256 = "809f5784ff535d066a09412db2ed449d8b36f8c36d7116f1e2b53d09a8d406e3";
};
buildType = "ament_python";
propagatedBuildInputs = [ ament-lint python3Packages.flake8 ];
meta = {
description = "The ability to check code for style and syntax conventions with flake8.";
license = with lib.licenses; [ asl20 ];
};
}