python.pkgs.pydot: hardcode path to graphviz's bin/

This commit is contained in:
Robert Schütz
2018-12-19 15:41:10 +01:00
parent 2357d57e94
commit d034fb8478
3 changed files with 41 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/pydot.py b/pydot.py
index 3c7da4d..582c5bc 100644
--- a/pydot.py
+++ b/pydot.py
@@ -124,7 +124,7 @@ def call_graphviz(program, arguments, working_dir, **kwargs):
'LD_LIBRARY_PATH': os.environ.get('LD_LIBRARY_PATH', ''),
}
- program_with_args = [program, ] + arguments
+ program_with_args = ['@graphviz@/bin/' + program, ] + arguments
process = subprocess.Popen(
program_with_args,