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, ament-pycodestyle, python3Packages, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-pyflakes";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.16.3-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_pyflakes/0.16.3-2.tar.gz";
|
|
|
|
name = "0.16.3-2.tar.gz";
|
|
|
|
sha256 = "c24500ed897c7a69fc1c1be428ea7e042a7d209833f28497cee29bee53e577c6";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-pycodestyle pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.pyflakes ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to check code using pyflakes and generate xUnit test
|
|
|
|
result files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|