2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# 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-rolling-nodl-python";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "0.3.1-r3";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/nodl-release/archive/release/rolling/nodl_python/0.3.1-3.tar.gz";
|
|
|
|
name = "0.3.1-3.tar.gz";
|
|
|
|
sha256 = "ee282b9f6d6330c57881500a70e3ea5a251846b36bd98f0d32415991020a1a22";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|