python.pkgs.sphinx_rtd_theme: add sphinx to propagatedBuildInputs

This commit is contained in:
Robert Schütz 2018-12-03 11:59:12 +01:00 committed by Frederik Rietdijk
parent 0156fbef31
commit 9614364dec

View File

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, sphinx
}:
buildPythonPackage rec {
@ -12,6 +13,8 @@ buildPythonPackage rec {
sha256 = "02f02a676d6baabb758a20c7a479d58648e0f64f13e07d1b388e9bb2afe86a09";
};
propagatedBuildInputs = [ sphinx ];
meta = with stdenv.lib; {
description = "ReadTheDocs.org theme for Sphinx";
homepage = https://github.com/snide/sphinx_rtd_theme/;