2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-05 22:48:11 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-pyflakes, ament-cmake-test, ament-cmake-lint-cmake, ament-cmake-copyright }:
|
2019-09-04 17:11:04 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-crystal-ament-cmake-pyflakes";
|
|
|
|
version = "0.6.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:21:13 -04:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/crystal/ament_cmake_pyflakes/0.6.4-0.tar.gz";
|
|
|
|
name = "0.6.4-0.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "d0a1cae175c33fa6c188f724bbf7aaadbdc0f2fbb250c10c7248d65567ac31e0";
|
|
|
|
};
|
|
|
|
|
2019-09-05 22:48:11 -04:00
|
|
|
buildType = "ament_cmake";
|
2019-09-04 17:11:04 -04:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
2019-09-05 22:48:11 -04:00
|
|
|
propagatedBuildInputs = [ ament-pyflakes ament-cmake-test ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake-test ament-cmake-core ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The CMake API for ament_pyflakes to check code using pyflakes.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|