diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-18 18:39:21 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-18 19:35:56 +0100 |
commit | 4d7134c37222a19d8719f2ea7fef53bdad10ac9b (patch) | |
tree | 00e50e35b8536e19b5c780b724045a2e10de718c /gnu | |
parent | 6dc3418374ac4a25da20b20b33a73c8eaade7654 (diff) |
gnu: python-igraph: Do not inherit igraph replacements.
...because igraph is built from different source code.
* gnu/packages/graph.scm (python-igraph): Use object inheritance instead of
PACKAGE/INHERIT.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graph.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 095fe1c9d1..4496d8c0e5 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -139,7 +139,8 @@ more.") (license license:gpl2+))) (define-public python-igraph - (package/inherit igraph + (package + (inherit igraph) (name "python-igraph") (version "0.9.9") (source (origin |