2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-pycodestyle";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "0.16.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_pycodestyle/0.16.2-1.tar.gz";
|
|
|
|
name = "0.16.2-1.tar.gz";
|
|
|
|
sha256 = "73f8fd732334be1555eb5451130972536856a60bc13d88555ca052b884938a90";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
propagatedBuildInputs = [ python3Packages.pycodestyle ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to check code against the style conventions in PEP 8 and
|
|
|
|
generate xUnit test result files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|