nix-ros-overlay/distros/foxy/maliput-py/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
935 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-clang-format, ament-cmake-flake8, ament-cmake-pytest, maliput, python3, pythonPackages }:
buildRosPackage {
pname = "ros-foxy-maliput-py";
version = "0.1.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/maliput_py-release/archive/release/foxy/maliput_py/0.1.5-1.tar.gz";
name = "0.1.5-1.tar.gz";
sha256 = "2cacc86e9d7e45046e2e8efd4b49d8ad38f5a151da229b131f1dd99b2eee56ea";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake python3 ];
checkInputs = [ ament-cmake-clang-format ament-cmake-flake8 ament-cmake-pytest ];
propagatedBuildInputs = [ maliput pythonPackages.pybind11 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Maliput bindings'';
license = with lib.licenses; [ "BSD-Clause-3" ];
};
}