0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python39Packages.sphinx: propagate sphinxcontrib-apidoc to make it usable in sphinx-build

this is more a hack but I couldn't get it to work otherwise today
This commit is contained in:
Sandro Jäckel 2022-01-21 00:36:45 +01:00 committed by Sandro Jäckel
parent c274e5e62d
commit 165de9a164
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -14,6 +14,7 @@
, pygments , pygments
, requests , requests
, snowballstemmer , snowballstemmer
, sphinxcontrib-apidoc
, sphinxcontrib-applehelp , sphinxcontrib-applehelp
, sphinxcontrib-devhelp , sphinxcontrib-devhelp
, sphinxcontrib-htmlhelp , sphinxcontrib-htmlhelp
@ -63,6 +64,9 @@ buildPythonPackage rec {
sphinxcontrib-serializinghtml sphinxcontrib-serializinghtml
# extra[docs] # extra[docs]
sphinxcontrib-websupport sphinxcontrib-websupport
# extra plugins which are otherwise not found by sphinx-build
sphinxcontrib-apidoc
] ++ lib.optionals (pythonOlder "3.10") [ ] ++ lib.optionals (pythonOlder "3.10") [
importlib-metadata importlib-metadata
]; ];