python3Packages.eigenpy: add graphviz

This commit is contained in:
Guilhem Saurel
2025-05-04 12:34:53 +02:00
parent 1dda6c1752
commit 2a12441d01
2 changed files with 13 additions and 2 deletions
@@ -2,13 +2,21 @@
lib,
buildPythonPackage,
fetchFromGitHub,
# nativeBuildInputs
cmake,
doxygen,
graphviz,
scipy,
# buildInputs
boost,
# propagatedBuildInputs
eigen,
jrl-cmakemodules,
numpy,
scipy,
}:
buildPythonPackage rec {
@@ -40,6 +48,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
cmake
doxygen
graphviz
scipy
];
+3 -1
View File
@@ -4375,7 +4375,9 @@ self: super: with self; {
eheimdigital = callPackage ../development/python-modules/eheimdigital { };
eigenpy = callPackage ../development/python-modules/eigenpy { };
eigenpy = callPackage ../development/python-modules/eigenpy {
inherit (pkgs) graphviz; # need the `dot` program, not the python module
};
einops = callPackage ../development/python-modules/einops { };