python3Packages.sphinxcontrib-websupport: fix missing deps

This commit is contained in:
Jonathan Ringer 2020-08-16 15:32:38 -07:00
parent ebe30ae849
commit ad9b5ba4b9
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, sphinxcontrib-serializinghtml
, six
}:
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "4edf0223a0685a7c485ae5a156b6f529ba1ee481a1417817935b20bde1956232";
};
propagatedBuildInputs = [ six ];
propagatedBuildInputs = [ six sphinxcontrib-serializinghtml ];
doCheck = false;