1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-16 09:02:36 +00:00

pythonPackages.sphinxcontrib_plantuml: use top-level plantuml

plantuml declared in python packages implicitly captures graphviz
python library instead of the top-level package and thus doesn't work
property after installation, trying to access
/nix/store/<hash>-python2.7-graphviz-0.10.1/bin/dot and failing to
find it.
This commit is contained in:
Roman Kashitsyn 2019-07-11 14:29:43 +02:00 committed by Frederik Rietdijk
parent 63109c860f
commit ed056fc87e

View file

@ -644,8 +644,6 @@ in {
pims = callPackage ../development/python-modules/pims { };
plantuml = callPackage ../tools/misc/plantuml { };
poetry = callPackage ../development/python-modules/poetry { };
pplpy = callPackage ../development/python-modules/pplpy { };
@ -4876,7 +4874,9 @@ in {
sphinxcontrib_newsfeed = callPackage ../development/python-modules/sphinxcontrib_newsfeed { };
sphinxcontrib_plantuml = callPackage ../development/python-modules/sphinxcontrib_plantuml { };
sphinxcontrib_plantuml = callPackage ../development/python-modules/sphinxcontrib_plantuml {
inherit (pkgs) plantuml;
};
sphinxcontrib-spelling = callPackage ../development/python-modules/sphinxcontrib-spelling { };