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/distros/humble/ament-mypy/default.nix

25 lines
808 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-flake8, python3Packages, pythonPackages }:
buildRosPackage {
pname = "ros-humble-ament-mypy";
version = "0.12.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_mypy/0.12.9-1.tar.gz";
name = "0.12.9-1.tar.gz";
sha256 = "aaba7fc4fb8a1b7dcec447f5e3a1f28bff7a5c0032be2939b8f06423f1371e7b";
};
buildType = "ament_python";
checkInputs = [ ament-flake8 python3Packages.pytest-mock pythonPackages.pytest ];
propagatedBuildInputs = [ python3Packages.mypy ];
meta = {
description = ''Support for mypy static type checking in ament.'';
license = with lib.licenses; [ asl20 ];
};
}