1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/ament-flake8/default.nix

24 lines
750 B
Nix
Raw Normal View History

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