Merge pull request #122089 from mweinelt/python/sphinx-autobuild

python3Packaegs.sphinx-autobuild: add missing colorama dependency
This commit is contained in:
Robert Schütz 2021-05-07 22:26:43 +02:00 committed by GitHub
commit 7275540666
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, colorama
, sphinx
, livereload
}:
@ -14,10 +15,15 @@ buildPythonPackage rec {
sha256 = "de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05";
};
propagatedBuildInputs = [ sphinx livereload ];
propagatedBuildInputs = [
colorama
sphinx
livereload
];
# No tests included.
doCheck = false;
pythonImportsCheck = [ "sphinx_autobuild" ];
meta = with lib; {

View file

@ -17665,6 +17665,8 @@ in
sphinx = with python3Packages; toPythonApplication sphinx;
sphinx-autobuild = with python3Packages; toPythonApplication sphinx-autobuild;
sphinx-serve = with python3Packages; toPythonApplication sphinx-serve;
sphinxbase = callPackage ../development/libraries/sphinxbase { };