python3Packaegs.sphinx-autobuild: add missing colorama dependency
This commit is contained in:
parent
4f64f6d889
commit
80466be251
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, colorama
|
||||||
, sphinx
|
, sphinx
|
||||||
, livereload
|
, livereload
|
||||||
}:
|
}:
|
||||||
|
@ -14,10 +15,15 @@ buildPythonPackage rec {
|
||||||
sha256 = "de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05";
|
sha256 = "de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ sphinx livereload ];
|
propagatedBuildInputs = [
|
||||||
|
colorama
|
||||||
|
sphinx
|
||||||
|
livereload
|
||||||
|
];
|
||||||
|
|
||||||
# No tests included.
|
# No tests included.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "sphinx_autobuild" ];
|
pythonImportsCheck = [ "sphinx_autobuild" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue