1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/nodl-python/default.nix
2022-06-11 13:21:09 -04:00

24 lines
927 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-index-python, ament-lint-auto, ament-lint-common, ament-mypy, python3Packages, pythonPackages }:
buildRosPackage {
pname = "ros-humble-nodl-python";
version = "0.3.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/nodl-release/archive/release/humble/nodl_python/0.3.1-3.tar.gz";
name = "0.3.1-3.tar.gz";
sha256 = "28cc84ae1693342eae59a7d0bbad72c4dcce03b1dd2e4474fe3a597c76798bbd";
};
buildType = "ament_python";
checkInputs = [ ament-flake8 ament-lint-auto ament-lint-common ament-mypy python3Packages.pytest-mock pythonPackages.pytest ];
propagatedBuildInputs = [ ament-index-python python3Packages.lxml ];
meta = {
description = ''Implementation of the NoDL API in Python.'';
license = with lib.licenses; [ asl20 ];
};
}