python.pkgs.sphinx_rtd_theme: add sphinx to propagatedBuildInputs

This commit is contained in:
Robert Schütz
2018-12-03 16:50:42 +01:00
committed by Frederik Rietdijk
parent 0156fbef31
commit 9614364dec
@@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, sphinx
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -12,6 +13,8 @@ buildPythonPackage rec {
sha256 = "02f02a676d6baabb758a20c7a479d58648e0f64f13e07d1b388e9bb2afe86a09"; sha256 = "02f02a676d6baabb758a20c7a479d58648e0f64f13e07d1b388e9bb2afe86a09";
}; };
propagatedBuildInputs = [ sphinx ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "ReadTheDocs.org theme for Sphinx"; description = "ReadTheDocs.org theme for Sphinx";
homepage = https://github.com/snide/sphinx_rtd_theme/; homepage = https://github.com/snide/sphinx_rtd_theme/;