2020-07-31 13:40:46 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-07-31 13:40:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-11-04 13:38:03 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, dynamic-graph, eigen, eigenpy, git, python3, python3Packages }:
|
2020-07-31 13:40:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-dynamic-graph-python";
|
2022-11-04 13:38:03 +00:00
|
|
|
version = "4.0.11-r1";
|
2020-07-31 13:40:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-11-04 13:38:03 +00:00
|
|
|
url = "https://github.com/stack-of-tasks/dynamic-graph-python-ros-release/archive/release/noetic/dynamic-graph-python/4.0.11-1.tar.gz";
|
|
|
|
name = "4.0.11-1.tar.gz";
|
|
|
|
sha256 = "d4e0d899e0c0507985c92f3d9c8dc253eb6ba71935c5f85cc4bc40276cc027e7";
|
2020-07-31 13:40:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ cmake doxygen git ];
|
2022-11-04 13:38:03 +00:00
|
|
|
propagatedBuildInputs = [ boost catkin dynamic-graph eigen eigenpy python3 python3Packages.numpy ];
|
2020-07-31 13:40:46 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Dynamic graph library Python bindings";
|
2020-07-31 13:40:46 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|