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
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; {